getStormForecast method

Future<ForecastRsp?> getStormForecast(
  1. String stormId
)
inherited

Implementation

Future<ForecastRsp?> getStormForecast(String stormId) async {
  Map? value = await _methodChannel.invokeMapMethod(
      MethodConstants.GetStormForecast, stormId);
  return value == null ? null : ForecastRsp.fromMap(value);
}