stopMeeting method

Future<bool> stopMeeting()

Implementation

Future<bool> stopMeeting() async {
  MethodChannelResponse? stopResponse =
      await methodChannelProvider.callMethod(MethodCallOption.stop);
  return stopResponse?.result ?? false;
}