devInvokeMethod static method

  1. @Deprecated('Dev only')
Future<void> devInvokeMethod(
  1. String method, [
  2. Object? arguments
])

Testing only

Implementation

@Deprecated('Dev only')
static Future<void> devInvokeMethod(String method,
    [Object? arguments]) async {
  await invokeMethod<dynamic>(method, arguments);
}