getFunctionFromSelector method

LocalContractFunction? getFunctionFromSelector(
  1. String selector
)

Implementation

LocalContractFunction? getFunctionFromSelector(String selector) {
  return functions
      .singleWhereOrNull((e) => e.functionSelectorHex == selector);
}