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