AvailableLocation constructor

AvailableLocation({
  1. required List city,
  2. required List state,
  3. required List country,
  4. required List pinCode,
})

Implementation

AvailableLocation({
  required this.city,
  required this.state,
  required this.country,
  required this.pinCode,
});