getDistricts method

Future<ResponseItemDTO> getDistricts({
  1. String? city,
})

Implementation

Future<ResponseItemDTO> getDistricts({String? city}) async {
  return await _repository!.getDistricts(city: city);
}