fromName static method

Returns the SmartContractAbiEntryType associated with the given name.

Case-insensitive matching is performed.

Implementation

static SmartContractAbiEntryType fromName(String name) {
  return values.firstWhere(
      (element) => element.name.toLowerCase() == name.toLowerCase());
}