getAir5Day method

Future<AirDailyResp?> getAir5Day(
  1. String location
)
inherited

Implementation

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