Country constructor

const Country({
  1. required String name,
  2. required String code,
  3. required String dialCode,
  4. required String flagPath,
})

Implementation

const Country({
  required this.name,
  required this.code,
  required this.dialCode,
  required this.flagPath,
});