selectDate function
Implementation
selectDate(BuildContext context) async {
return await showDatePicker(
context: context,
helpText: 'Select your Date of Birth',
initialDate: DateTime.now(),
firstDate: DateTime(DateTime.now().year - 80),
lastDate: DateTime.now(),
);
}