copyWith method

StoryAreaTypeWeather copyWith({
  1. double? temperature,
  2. String? emoji,
  3. int? backgroundColor,
})

Implementation

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