platformCallHandler static method

Future<void> platformCallHandler(
  1. MethodCall call
)

Implementation

static Future<void> platformCallHandler(MethodCall call) async {
  try {
    _doHandlePlatformCall(call);
  } catch (ex) {
    _log('Unexpected error: $ex');
  }
}