BeanDealModel constructor

BeanDealModel({
  1. double? value,
  2. required double valueMax,
  3. required double valueMin,
  4. CellPointSet cellPointSet = CellPointSet.normal,
  5. String tag = '',
  6. dynamic touchBackValue,
})

Implementation

BeanDealModel(
    {this.value,
    required this.valueMax,
    required this.valueMin,
    this.cellPointSet = CellPointSet.normal,
    this.tag = '',
    this.touchBackValue});