call method
Implementation
Future<Map<String, dynamic>> call({
required double swLat,
required double swLng,
required double neLat,
required double neLng,
}) {
return repository.getGridSection(
swLat: swLat,
swLng: swLng,
neLat: neLat,
neLng: neLng,
);
}