ContentPlaceholder constructor

const ContentPlaceholder({
  1. Key? key,
  2. int lines = -1,
  3. Color color = const Color.fromARGB(128, 255, 255, 255),
})

Implementation

const ContentPlaceholder({
  Key? key,
  this.lines = -1,
  this.color = const Color.fromARGB(128, 255, 255, 255),
}) : super(key: key);