copyWith method

Preferencia copyWith({
  1. String? id,
  2. String? identiticador,
  3. String? nombre,
  4. String? descripcion,
  5. bool? valor,
  6. String? tipoCampo,
  7. DateTime? updated,
  8. DateTime? created,
  9. String? grupoPreferenciaId,
})

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,
    );