TextPlaceholder constructor

const TextPlaceholder({
  1. Key? key,
  2. bool enabled = true,
  3. int lines = 1,
  4. Widget? child,
  5. double height = 14,
  6. double? width = 90,
  7. Color? color,
})

Implementation

const TextPlaceholder({
  super.key,
  this.enabled = true,
  this.lines = 1,
  this.child,
  this.height = 14,
  this.width = 90,
  this.color,
});