compute<T> method

Future<T?> compute<T>(
  1. String method,
  2. Map<String, dynamic> args
)

Implementation

Future<T?> compute<T>(String method, Map<String, dynamic> args) async {
  return invokeMethod<T>(method, args);
}