canStopShareWhiteboard method

  1. @override
Future<bool> canStopShareWhiteboard()

Determine whether the user can stop sharing the whiteboard.
Return true means the user can stop sharing the whiteboard.

Implementation

@override
Future<bool> canStopShareWhiteboard() async {
  return await methodChannel
      .invokeMethod<bool>('canStopShareWhiteboard')
      .then<bool>((bool? value) => value ?? false);
}