PlexSkeleton.line constructor

const PlexSkeleton.line({
  1. Key? key,
  2. double? width,
  3. double height = 12,
})

Implementation

const PlexSkeleton.line({
  super.key,
  this.width,
  this.height = 12,
})  : radius = PlexRadius.sm,
      shape = BoxShape.rectangle;