LitTextField constructor

const LitTextField({
  1. Key? key,
  2. required String label,
  3. bool initialObsureTextValue = false,
  4. bool allowObscuredText = false,
  5. IconData? icon,
  6. required dynamic onChange(
    1. String value
    ),
})

Implementation

const LitTextField({
  Key? key,
  required this.label,
  this.initialObsureTextValue = false,
  this.allowObscuredText = false,
  this.icon,
  required this.onChange,
}) : super(key: key);