PhoenixShimmer.circular constructor

const PhoenixShimmer.circular({
  1. Key? key,
  2. double width = double.infinity,
  3. required double height,
  4. Color baseColor = const Color(0xFFE0E0E0),
  5. ShapeBorder shapeBorder = const CircleBorder(),
  6. Color? highlightColor,
})

Implementation

const PhoenixShimmer.circular({
  Key? key,
  this.width = double.infinity,
  required this.height,
  this.baseColor = const Color(0xFFE0E0E0),
  this.shapeBorder = const CircleBorder(),
  this.highlightColor,
}) : super(key: key);