getStaticDefinedSyncMethod method
Implementation
StaticDefinedSyncBindingObjectMethod? getStaticDefinedSyncMethod(String method) {
StaticDefinedSyncBindingObjectMethodMap? targetMap = methods.firstWhereOrNull((map) {
return map.containsKey(method);
});
return targetMap?[method];
}