functionFromName method
Retrieves a function fragment from the contract ABI based on its name.
Implementation
AbiFunctionFragment functionFromName(String name) =>
functions.singleWhere((element) => element.name == name);
Retrieves a function fragment from the contract ABI based on its name.
AbiFunctionFragment functionFromName(String name) =>
functions.singleWhere((element) => element.name == name);