getStaticDefinedAsyncMethod method

StaticDefinedAsyncBindingObjectMethod? getStaticDefinedAsyncMethod(
  1. String method
)
inherited

Implementation

StaticDefinedAsyncBindingObjectMethod? getStaticDefinedAsyncMethod(String method) {
  StaticDefinedAsyncBindingObjectMethodMap? targetMap = asyncMethods.firstWhereOrNull((map) {
    return map.containsKey(method);
  });
  return targetMap?[method];
}