containsKey method

bool containsKey(
  1. String? varName
)

Check if this struct has the key in its own _fields

Implementation

bool containsKey(String? varName) {
  return _fields.containsKey(varName);
}