copyWith method

GetGiftChatThemes copyWith({
  1. String? offset,
  2. int? limit,
})

Implementation

GetGiftChatThemes copyWith({String? offset, int? limit}) => GetGiftChatThemes(
  offset: offset ?? this.offset,
  limit: limit ?? this.limit,
);