LoadingView constructor

const LoadingView({
  1. Key? key,
  2. required int index,
  3. Color? color,
  4. double size = 35,
})

Implementation

const LoadingView({
  super.key,
  required this.index,
  this.color,
  this.size = 35,
});