copyWith method
GetLibraryVoicesResponseModel
copyWith({
- List<
LibraryVoiceResponseModel> ? voices, - bool? hasMore,
- dynamic lastSortId,
Implementation
GetLibraryVoicesResponseModel copyWith(
{List<LibraryVoiceResponseModel>? voices,
bool? hasMore,
dynamic lastSortId}) {
return GetLibraryVoicesResponseModel(
voices: voices ?? this.voices,
hasMore: hasMore ?? this.hasMore,
lastSortId: lastSortId ?? this.lastSortId);
}