Skeleton constructor

Skeleton({
  1. required Rect? rect,
  2. required Color color,
  3. double opacity = 1.0,
  4. bool? isText,
})

Implementation

Skeleton({
  required this.rect,
  required this.color,
  this.opacity = 1.0,
  this.isText,
});