updateByKey abstract method

F updateByKey(
  1. E key,
  2. dynamic value
)

Updates the field corresponding to the given key and returns a new instance of the form entity.

Subclasses must implement this method using immutable update patterns (e.g., via copyWith or equivalent).

Implementation

F updateByKey(E key, value);