copyWith method
Implementation
RowTabla copyWith({
String? id,
TipoId? tipoId,
String? claveColumna,
String? valor,
Widget? contenido,
Color? colorFila,
Color? colorTexto,
Alignment? alignment,
}) {
return RowTabla(
id: id ?? this.id,
tipoId: tipoId ?? this.tipoId,
claveColumna: claveColumna ?? this.claveColumna,
valor: valor ?? this.valor,
contenido: contenido ?? this.contenido,
colorFila: colorFila ?? this.colorFila,
colorTexto: colorTexto ?? this.colorTexto,
alignment: alignment ?? this.alignment,
);
}