CardInput constructor

const CardInput({
  1. Key? key,
  2. int maxLines = 5,
  3. int maxLength = 50,
  4. bool enable = true,
  5. String? defalutValue,
  6. String? hintText,
  7. dynamic onChange(
    1. String
    )?,
  8. TextStyle? textStyle,
  9. EdgeInsetsGeometry? margin,
  10. EdgeInsetsGeometry? contentPadding,
  11. double? height,
  12. Decoration? decoration,
  13. InputDecoration? inputDecoration,
  14. dynamic onDispose()?,
  15. dynamic onFocusChange(
    1. bool
    )?,
})

Implementation

const CardInput({
  Key? key,
  this.maxLines = 5,
  this.maxLength = 50,
  this.enable = true,
  this.defalutValue,
  this.hintText,
  this.onChange,
  this.textStyle,
  this.margin,
  this.contentPadding,
  this.height,
  this.decoration,
  this.inputDecoration,
  this.onDispose,
  this.onFocusChange,
}) : super(key: key);