canStartShareWhiteboard method
Determine whether the user can start sharing the whiteboard.
Return true means the user can start sharing the whiteboard.
Implementation
@override
Future<bool> canStartShareWhiteboard() async {
return await methodChannel
.invokeMethod<bool>('canStartShareWhiteboard')
.then<bool>((bool? value) => value ?? false);
}