hasFunction method

bool hasFunction(
  1. String selector
)

Check if function selector exists in ABI

Implementation

bool hasFunction(String selector) {
  return _functions.containsKey(selector.toLowerCase());
}