panic method

  1. @override
Future<void> panic()
override

Implementation

@override
Future<void> panic() async {
  final ffiPlatform = _resolvePlatformOrThrow();
  if (ffiPlatform != null) {
    return ffiPlatform.panic();
  }
  await methodChannel.invokeMethod<void>('panic');
}