FMShimmerWidget constructor

const FMShimmerWidget({
  1. Key? key,
  2. required Widget child,
  3. Color color = Colors.grey,
})

Implementation

const FMShimmerWidget({
  super.key,
  required this.child,
  this.color = Colors.grey,
});