AppDatePicker constructor

const AppDatePicker({
  1. Key? key,
  2. String hintText = '',
  3. required void onPressed(),
  4. required String text,
  5. double? width,
  6. bool isValidator = false,
  7. bool isInsideDataSource = false,
})

Implementation

const AppDatePicker({
  super.key,
  this.hintText = '',
  required this.onPressed,
  required this.text,
  this.width,
  this.isValidator = false,
  this.isInsideDataSource = false,
});