value property

T? value
final

The value for this TypeSelector.

Example of usage:

String? myValue;
TypeSelector(
  value: myValue, // Your custom value
  // other properties
);

Implementation

final T? value;