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