Skeleton constructor

const Skeleton({
  1. Key? key,
  2. int row = 0,
  3. double rowWidth = 1,
  4. bool title = false,
  5. double titleWidth = .4,
  6. bool avatar = false,
  7. double avatarSize = Style.skeletonAvatarSize,
  8. String avatarShape = "suqare",
  9. bool loading = false,
  10. Widget? child,
})

Implementation

const Skeleton(
    {Key? key,
    this.row: 0,
    this.rowWidth: 1,
    this.title: false,
    this.titleWidth: .4,
    this.avatar: false,
    this.avatarSize: Style.skeletonAvatarSize,
    this.avatarShape: "suqare",
    this.loading: false,
    this.child})
    : super(key: key);