isSharingOut method
Determine whether the current user is sharing.
Return true indicates the current user is sharing, otherwise false.
Implementation
@override
Future<bool> isSharingOut() async {
return await methodChannel
.invokeMethod<bool>('isSharingOut')
.then<bool>((bool? value) => value ?? false);
}