ShimmerLoading constructor

const ShimmerLoading({
  1. Key? key,
  2. required bool isLoading,
  3. required Widget child,
})

Implementation

const ShimmerLoading({
  Key? key,
  required this.isLoading,
  required this.child,
}):super(key: key);