copyWith method

EmojiCategory copyWith({
  1. String? name,
  2. Sticker? icon,
  3. List<String>? emojis,
})

Implementation

EmojiCategory copyWith({
  String? name,
  Sticker? icon,
  List<String>? emojis,
}) =>
    EmojiCategory(
      name: name ?? this.name,
      icon: icon ?? this.icon,
      emojis: emojis ?? this.emojis,
    );