invokeMethod<T> method
Future<T?>
invokeMethod<T>(
- String method, [
- dynamic arguments,
- PlatformNotification? notification
override
Invokes a native platform method with optional notification wrapping.
Implementation
@override
Future<T?> invokeMethod<T>(
String method, [
dynamic arguments,
PlatformNotification? notification,
]) {
return _channel.invokeMethod<T>(
method,
_platformArguments(arguments, notification),
);
}