InputView constructor

const InputView({
  1. Key? key,
  2. int? maxLines,
  3. int? maxLength,
  4. String? placeholder,
  5. required String title,
  6. required dynamic confirmAction(
    1. String output
    ),
  7. String? cancelText,
  8. String? confirmText,
  9. Function? cancelAction,
  10. TextStyle? titleTextStyle,
  11. TextStyle? placeholderStyle,
  12. TextStyle? cancelTextStyle,
  13. TextStyle? confirmTextStyle,
})

Implementation

const InputView({
  Key? key,
  this.maxLines,
  this.maxLength,
  this.placeholder,
  required this.title,
  required this.confirmAction,
  this.cancelText,
  this.confirmText,
  this.cancelAction,
  this.titleTextStyle,
  this.placeholderStyle,
  this.cancelTextStyle,
  this.confirmTextStyle,
}) : super(key: key);