NicInfo constructor

const NicInfo({
  1. required String nicNo,
  2. required String format,
  3. required String serialNo,
  4. required String birthDate,
  5. required String weekDay,
  6. required String age,
  7. required String gender,
  8. required String votability,
})

Constructs a NicInfo object with required fields.

Implementation

const NicInfo({
  required this.nicNo,
  required this.format,
  required this.serialNo,
  required this.birthDate,
  required this.weekDay,
  required this.age,
  required this.gender,
  required this.votability,
});