Country constructor

Country({
  1. required int id,
  2. required String? name,
})

Implementation

Country({
  required this.id,
  required this.name,
});