FindoField constructor

const FindoField({
  1. Key? key,
  2. required void onChanged(
    1. String value
    ),
  3. InputDecoration? decoration,
  4. TextEditingController? controller,
  5. int? maximumLength,
  6. Duration duration = const Duration(milliseconds: 300),
  7. VoidCallback? onCancel,
  8. TextStyle? textStyle,
})

Implementation

const FindoField({
  Key? key,
  required this.onChanged,
  this.decoration,
  this.controller,
  this.maximumLength,
  this.duration = const Duration(milliseconds: 300),
  this.onCancel,
  this.textStyle,
}) : super(key: key);