YmDatePicker constructor

YmDatePicker(
  1. String beginDate,
  2. String endDate, {
  3. Key? key,
  4. required Function onOkClick,
  5. required Function onCancelClick,
  6. double itemHeight = 36,
  7. Color backgroundColor = const Color(0xffffffff),
  8. String value = "",
})

Implementation

YmDatePicker(
  this.beginDate,
  this.endDate, {
  Key? key,
  required this.onOkClick,
  required this.onCancelClick,
  this.itemHeight = 36,
  this.backgroundColor = const Color(0xffffffff),
  this.value = "",
}) : super(key: key);