copyWith method
GetSpeechHistoryResponseModel
copyWith({
- List<
SpeechHistoryItemResponseModel> ? history, - dynamic lastHistoryItemId,
- bool? hasMore,
Implementation
GetSpeechHistoryResponseModel copyWith(
{List<SpeechHistoryItemResponseModel>? history,
dynamic lastHistoryItemId,
bool? hasMore}) {
return GetSpeechHistoryResponseModel(
history: history ?? this.history,
lastHistoryItemId: lastHistoryItemId ?? this.lastHistoryItemId,
hasMore: hasMore ?? this.hasMore);
}