PlaceholderRF constructor

PlaceholderRF({
  1. Key? key,
  2. PlaceholderTypeRF type = PlaceholderTypeRF.Inline,
  3. int items = 2,
  4. int lines = 4,
  5. double lineHeight = 14,
  6. Color lineColor = Colors.grey,
  7. TextAlign align = TextAlign.left,
  8. Color backColor = Colors.black12,
  9. double borderRadius = 10,
  10. Border? border,
  11. double height = 40,
})

Implementation

PlaceholderRF({
  Key? key,
  this.type = PlaceholderTypeRF.Inline,
  this.items = 2,
  this.lines = 4,
  this.lineHeight = 14,
  this.lineColor = Colors.grey,
  this.align = TextAlign.left,
  this.backColor = Colors.black12,
  this.borderRadius = 10,
  this.border,
  this.height = 40,
}) : super(key: key);