getValue method

T? getValue(
  1. FormMapValues values
)

Gets the value associated with this key from the form values map.

Implementation

T? getValue(FormMapValues values) {
  return values.getValue(this);
}