invokeMethod<T> method

Future<T?> invokeMethod<T>(
  1. String method, [
  2. Map<String, Object?> arguments = const <String, Object?>{}
])

Implementation

Future<T?> invokeMethod<T>(
  String method, [
  Map<String, Object?> arguments = const <String, Object?>{},
]) {
  throw UnimplementedError('$method() has not been implemented.');
}