AccountDob constructor

const AccountDob({
  1. required int day,
  2. required int month,
  3. required int year,
})

date_of_birth_specs

The individual's date of birth.

Implementation

const AccountDob({
  required this.day,
  required this.month,
  required this.year,
});