getAirNow method
Implementation
Future<AirNowResp?> getAirNow(String location) async {
Map? value = await _methodChannel.invokeMapMethod(
MethodConstants.GetAirNow, location);
return value == null ? null : AirNowResp.fromMap(value);
}
Future<AirNowResp?> getAirNow(String location) async {
Map? value = await _methodChannel.invokeMapMethod(
MethodConstants.GetAirNow, location);
return value == null ? null : AirNowResp.fromMap(value);
}