copyWith method
Implementation
InputStoryAreaTypeWeather copyWith({
double? temperature,
String? emoji,
int? backgroundColor,
}) => InputStoryAreaTypeWeather(
temperature: temperature ?? this.temperature,
emoji: emoji ?? this.emoji,
backgroundColor: backgroundColor ?? this.backgroundColor,
);