TodayHourInput constructor

const TodayHourInput({
  1. Key? key,
  2. String hoursValue = '',
  3. String minutesValue = '',
  4. bool disabled = false,
  5. dynamic onChanged(
    1. String,
    2. String
    )?,
})

Implementation

const TodayHourInput({
  super.key,
  this.hoursValue = '',
  this.minutesValue = '',
  this.disabled = false,
  this.onChanged,
});