platformCallHandler method

Future<void> platformCallHandler(
  1. MethodCall call
)

Implementation

Future<void> platformCallHandler(MethodCall call) async {
  try {
    _doHandlePlatformCall(call);
  } on Exception catch (ex) {
    _logger.error('Unexpected error: $ex');
  }
}