decline method

Future<void> decline(
  1. Conference conference
)

Declines an invitation to a specific conference.

Implementation

Future<void> decline(Conference conference) {
  var args = {"conference": conference.toJson()};
  return _methodChannel.invokeMethod<void>("decline", args);
}