Skeleton constructor

const Skeleton({
  1. Key? key,
  2. Color baseColor = Colors.black26,
  3. Color highlightColor = Colors.black12,
  4. Color color = Colors.black54,
  5. EdgeInsets? margin,
  6. dynamic size = const [50, 15],
  7. double radius = 0,
  8. bool darkMode = false,
})

Implementation

const Skeleton(
    {Key? key,
    this.baseColor = Colors.black26,
    this.highlightColor = Colors.black12,
    this.color = Colors.black54,
    this.margin,
    this.size = const [50, 15],
    this.radius = 0,
    this.darkMode = false})
    : super(key: key);