invokeListMethod<T> method
Future<List<T> ?>
invokeListMethod<T>(
- String method, [
- dynamic arguments,
- PlatformNotification? notification
override
Invokes a native platform method that returns a list.
Implementation
@override
Future<List<T>?> invokeListMethod<T>(
String method, [
dynamic arguments,
PlatformNotification? notification,
]) {
return _channel.invokeListMethod<T>(
method,
_platformArguments(arguments, notification),
);
}