TodayArea constructor

const TodayArea({
  1. Key? key,
  2. String value = '',
  3. String? placeholder,
  4. String? label,
  5. String? optionalLabel,
  6. String? description,
  7. bool error = false,
  8. String? errorMessage,
  9. bool disabled = false,
  10. dynamic onChanged(
    1. String
    )?,
  11. dynamic onTapOutside(
    1. String
    )?,
})

Implementation

const TodayArea({
  super.key,
  this.value = '',
  this.placeholder,
  this.label,
  this.optionalLabel,
  this.description,
  this.error = false,
  this.errorMessage,
  this.disabled = false,
  this.onChanged,
  this.onTapOutside,
});