copyWith method
Implementation
Preferencia copyWith({
String? id,
String? identiticador,
String? nombre,
String? descripcion,
bool? valor,
String? tipoCampo,
DateTime? updated,
DateTime? created,
String? grupoPreferenciaId,
}) =>
Preferencia(
id: id ?? this.id,
identiticador: identiticador ?? this.identiticador,
nombre: nombre ?? this.nombre,
descripcion: descripcion ?? this.descripcion,
valor: valor ?? this.valor,
tipoCampo: tipoCampo ?? this.tipoCampo,
updated: updated ?? this.updated,
created: created ?? this.created,
grupoPreferenciaId: grupoPreferenciaId ?? this.grupoPreferenciaId,
);