callable method

bool callable(
  1. String helper
)

checks if helper with given name can be called

Implementation

bool callable(String helper) {
  if (_helpers == null) return false;

  return _helpers!.containsKey(helper);
}