copyWith method

GetAudioNativeProjectSettingsResponseModel copyWith({
  1. bool? enabled,
  2. dynamic snapshotId,
  3. 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);
}