invokeListMethod<T> method

  1. @override
Future<List<T>?> invokeListMethod<T>(
  1. String method, [
  2. dynamic arguments,
  3. 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),
  );
}