copyWithWrapped method
Implementation
GetLibraryVoicesResponseModel copyWithWrapped(
{Wrapped<List<LibraryVoiceResponseModel>>? voices,
Wrapped<bool>? hasMore,
Wrapped<dynamic>? lastSortId}) {
return GetLibraryVoicesResponseModel(
voices: (voices != null ? voices.value : this.voices),
hasMore: (hasMore != null ? hasMore.value : this.hasMore),
lastSortId: (lastSortId != null ? lastSortId.value : this.lastSortId));
}