UniversalLoader constructor

const UniversalLoader({
  1. Key? key,
  2. required String path,
  3. double size = 100,
  4. bool isNetwork = false,
  5. bool repeat = true,
  6. bool animate = true,
})

Implementation

const UniversalLoader({
  super.key,
  required this.path,
  this.size = 100,
  this.isNetwork = false,
  this.repeat = true,
  this.animate = true,
});