copyWith method
AudioNativeProjectSettingsResponseModel
copyWith(
{ - String? title,
- String? image,
- String? author,
- bool? small,
- String? textColor,
- String? backgroundColor,
- int? sessionization,
- dynamic audioPath,
- dynamic audioUrl,
- AudioNativeProjectSettingsResponseModelStatus? status,
})
Implementation
AudioNativeProjectSettingsResponseModel copyWith(
{String? title,
String? image,
String? author,
bool? small,
String? textColor,
String? backgroundColor,
int? sessionization,
dynamic audioPath,
dynamic audioUrl,
enums.AudioNativeProjectSettingsResponseModelStatus? status}) {
return AudioNativeProjectSettingsResponseModel(
title: title ?? this.title,
image: image ?? this.image,
author: author ?? this.author,
small: small ?? this.small,
textColor: textColor ?? this.textColor,
backgroundColor: backgroundColor ?? this.backgroundColor,
sessionization: sessionization ?? this.sessionization,
audioPath: audioPath ?? this.audioPath,
audioUrl: audioUrl ?? this.audioUrl,
status: status ?? this.status);
}