copyWith method

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

Implementation

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