CardInputExc constructor

const CardInputExc({
  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. Decoration? decoration,
})

Implementation

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