CampoEsquema constructor

CampoEsquema({
  1. required String key,
  2. required String currentKeyController,
  3. TextEditingController? controller,
  4. BuildContext? context,
  5. String label = '',
  6. TypeEsquema type = TypeEsquema.unknown,
  7. bool mostrarTabla = false,
  8. bool grupo = false,
  9. TipoDato tipoDato = TipoDato.unKnown,
  10. String campoColeccion = '',
  11. String keyDesarrollo = '',
  12. String paramsConsultaColeccion = '',
  13. Map<String, dynamic> dynamicListValue = const <String, dynamic>{},
  14. Map<String, dynamic> listenStreamValue = const <String, dynamic>{},
  15. int ordenTabla = 0,
  16. String modoAjusteTabla = '',
  17. double anchoColumna = 0.0,
  18. double proporcionAnchoCampo = 1,
  19. dynamic valor,
  20. Map<String, dynamic> esquema = const <String, dynamic>{},
})

Implementation

CampoEsquema({
  required this.key,
  required this.currentKeyController,
  this.controller,
  this.context,
  this.label = '',
  this.type = TypeEsquema.unknown,
  this.mostrarTabla = false,
  this.grupo = false,
  this.tipoDato = TipoDato.unKnown,
  this.campoColeccion = '',
  this.keyDesarrollo = '',
  this.paramsConsultaColeccion = '',
  this.dynamicListValue = const <String, dynamic>{},
  this.listenStreamValue = const <String, dynamic>{},
  this.ordenTabla = 0,
  this.modoAjusteTabla = '',
  this.anchoColumna = 0.0,
  this.proporcionAnchoCampo = 1,
  this.valor,
  this.esquema = const <String, dynamic>{},
});