min property

int? get min

Implementation

int? get min => _min;
set min (int? value)

Implementation

set min(int? value) {
  _min = value;
}