isOtherSharing method

  1. @override
Future<bool> isOtherSharing()
override

Implementation

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