isOfflineProcessingAllowed method

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

Implementation

@override
Future<bool> isOfflineProcessingAllowed() async {
  final result =
      await methodChannel.invokeMethod<bool>('isOfflineProcessingAllowed');
  if (result == null) {
    throw getChannelStateError(
        "isOfflineProcessingAllowed()", "returned null");
  }
  return result;
}