RowDatePicker constructor

const RowDatePicker({
  1. Key? key,
  2. required ValueChanged onTap,
  3. double height = 150,
  4. DatePickerType type = DatePickerType.full,
  5. TextStyle frameTextStyle = const TextStyle(color: Colors.black),
  6. TextStyle unFrameTextStyle = const TextStyle(color: Colors.grey),
  7. Color backgroundColor = Colors.white,
  8. Color frameColor = Colors.grey,
})

Implementation

const RowDatePicker({
  final Key? key,
  required this.onTap,
  this.height = 150,
  this.type = DatePickerType.full,
  this.frameTextStyle = const TextStyle(color: Colors.black),
  this.unFrameTextStyle = const TextStyle(color: Colors.grey),
  this.backgroundColor = Colors.white,
  this.frameColor = Colors.grey,
}) : super(key: key);