RowTabla constructor

RowTabla({
  1. String valor = '',
  2. Color? colorTexto,
  3. required String id,
  4. required TipoId tipoId,
  5. Color colorFila = Colors.transparent,
  6. required String claveColumna,
  7. Widget? contenido,
  8. Alignment alignment = Alignment.centerLeft,
})

Implementation

RowTabla(
    {this.valor = '',
    this.colorTexto,
    required this.id,
    required this.tipoId,
    this.colorFila = Colors.transparent,
    required this.claveColumna,
    this.contenido,
    this.alignment = Alignment.centerLeft});