getGeoInfo method

Future<Result> getGeoInfo(
  1. String pincode
)

Fetch geographic information (city, state, etc.) for a given pincode.

Implementation

Future<Result<dynamic>> getGeoInfo(String pincode) async {
  return await ApiService.getGeoInfo(pincode);
}