operator [] method
Returns the current value for fieldName.
Shorthand for fieldByName(fieldName).value. The returned value is
intentionally raw (Object?); use fieldByName(fieldName).asString and
related typed accessors when a typed read is preferred.
Implementation
Object? operator [](String fieldName) => fieldByName(fieldName).value;