getFieldValue method

String? getFieldValue(
  1. String fieldName
)

Returns the value of the named field, or null if no such field.

This method is case-insensitive with respect to the field name.

Implementation

String? getFieldValue(String fieldName) {
  return _values[fieldName.toLowerCase()];
}