getValue<T> method
Get the value of a form field.
Implementation
T? getValue<T>(TypedId<T> fieldId) {
return _fieldKeys[fieldId.id]?.currentState?.value as T?;
}
Get the value of a form field.
T? getValue<T>(TypedId<T> fieldId) {
return _fieldKeys[fieldId.id]?.currentState?.value as T?;
}