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