isConstantLoaded method

bool isConstantLoaded(
  1. String palletName,
  2. String constantName
)

Check if a constant is loaded without triggering loading

Implementation

bool isConstantLoaded(String palletName, String constantName) {
  return _decodedCache[palletName]?.containsKey(constantName) == true;
}