invoke<T> method

Future<T?> invoke<T>(
  1. String method, [
  2. Map<String, Object?>? arguments
])

Invokes a native SDK operation.

Implementation

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