maxQuantityValues property

int? maxQuantityValues
final

The maxQuantityValues for this TypeSelector (when multiple attribute is true).

The maxQuantityValues value must be greater or equal to 1.

The default value is:

values.length // if multiple is [true]

Example of usage:

TypeSelector(
  maxQuantityValues: 3, // the value must be 1 or more
  multiple: true,
  // other properties
);

Implementation

final int? maxQuantityValues;