copyWith method

GiftChatThemes copyWith({
  1. List<GiftChatTheme>? themes,
  2. String? nextOffset,
})

Implementation

GiftChatThemes copyWith({List<GiftChatTheme>? themes, String? nextOffset}) =>
    GiftChatThemes(
      themes: themes ?? this.themes,
      nextOffset: nextOffset ?? this.nextOffset,
    );