copyWith method
GetAudioNativeProjectSettingsResponseModel
copyWith({
- bool? enabled,
- dynamic snapshotId,
- dynamic settings,
Implementation
GetAudioNativeProjectSettingsResponseModel copyWith(
{bool? enabled, dynamic snapshotId, dynamic settings}) {
return GetAudioNativeProjectSettingsResponseModel(
enabled: enabled ?? this.enabled,
snapshotId: snapshotId ?? this.snapshotId,
settings: settings ?? this.settings);
}