PhoenixShimmer.custom constructor

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

Implementation

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