ButtonSkeleton constructor

const ButtonSkeleton({
  1. Key? key,
  2. required Color baseColor,
  3. double width = 120,
  4. double height = 40,
  5. double borderRadius = 8,
})

Implementation

const ButtonSkeleton({
  super.key,
  required super.baseColor,
  this.width = 120,
  this.height = 40,
  this.borderRadius = 8,
});