fetch method

Future<Conference> fetch(
  1. String? conferenceId
)

Returns the Conference object that you can use to join the conference. If the conferenceId parameter is not provided, the method returns the current Conference object.

Implementation

Future<Conference> fetch(String? conferenceId) async {
  var result = await _methodChannel.invokeMethod<Map<Object?, Object?>>(
          "fetch", {"conferenceId": conferenceId}) ??
      <String, Object?>{};
  return ConferenceMapper.fromMap(result);
}