TodayPointsInput constructor

const TodayPointsInput({
  1. Key? key,
  2. String pointsValue = '',
  3. bool disabled = false,
  4. dynamic onChanged(
    1. String
    )?,
})

Implementation

const TodayPointsInput({
  super.key,
  this.pointsValue = '',
  this.disabled = false,
  this.onChanged,
});