valueGet property

ValueOfGetter<T?, C>? valueGet
final

Callback to get the value from the controller, if not set then the controller's value property is used.

For example used for TextEditingController to get the value from the text property.

valueGet: (controller) => controller.text,

Implementation

final ValueOfGetter<T?, C>? valueGet;