Country constructor

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

Implementation

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