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