Input constructor
Input({
- Key? key,
- required String name,
- bool? editable,
- required String label,
- bool visible = true,
- bool isPrimaryKey = false,
- bool obrigatorio = false,
- int? maxLines = 1,
- bool latext = false,
- String? valorinicial,
- dynamic onChanged()?,
- double? width,
- InputBorder? border,
- bool? filled,
- TextStyle? style,
- TextStyle? labelStyle,
- IconData? prefixIcon,
- bool obscureText = false,
- Color? fillColor,
- 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);