Input constructor

Input({
  1. Key? key,
  2. required String name,
  3. bool? editable,
  4. required String label,
  5. bool visible = true,
  6. bool isPrimaryKey = false,
  7. bool obrigatorio = false,
  8. int? maxLines = 1,
  9. bool latext = false,
  10. String? valorinicial,
  11. dynamic onChanged(
    1. String
    )?,
  12. double? width,
  13. InputBorder? border,
  14. bool? filled,
  15. TextStyle? style,
  16. TextStyle? labelStyle,
  17. IconData? prefixIcon,
  18. bool obscureText = false,
  19. Color? fillColor,
  20. InputType inputType = InputType.text,
})

Implementation

Input(
    {Key? key,
    required this.name,
    this.editable,
    required this.label,
    this.visible = true,
    this.isPrimaryKey = false,
    this.obrigatorio = false,
    this.maxLines = 1,
    this.latext = false,
    this.valorinicial,
    this.onChanged,
    this.width,
    this.border,
    this.filled,
    this.style,
    this.labelStyle,
    this.prefixIcon,
    this.obscureText = false,
    this.fillColor,
    this.inputType = InputType.text})
    : super(key: key);