TLCardTextFieldStyle constructor

const TLCardTextFieldStyle({
  1. Color color = const Color(0xFFF7F8FA),
  2. Color shadowColor = Colors.transparent,
  3. double elevation = 0.0,
  4. ShapeBorder? shape,
  5. double? radius,
  6. EdgeInsetsGeometry margin = EdgeInsets.zero,
  7. Clip clipBehavior = Clip.hardEdge,
  8. int? inputMaxLength,
  9. double? minHeight,
  10. double? maxHeight,
  11. String? hintDisabledText,
  12. TLTextFieldStyle? textFieldStyle,
})

Implementation

const TLCardTextFieldStyle({
  this.color = const Color(0xFFF7F8FA),
  this.shadowColor = Colors.transparent,
  this.elevation = 0.0,
  this.shape,
  this.radius,
  this.margin = EdgeInsets.zero,
  this.clipBehavior = Clip.hardEdge,
  this.inputMaxLength,
  this.minHeight,
  this.maxHeight,
  this.hintDisabledText,
  this.textFieldStyle,
});