copyWith method

GetEmojiCategories copyWith({
  1. EmojiCategoryType? type,
})

Implementation

GetEmojiCategories copyWith({
  EmojiCategoryType? type,
}) =>
    GetEmojiCategories(
      type: type ?? this.type,
    );