SelectLoader constructor

const SelectLoader({
  1. Key? key,
  2. required SelectLoaderType type,
  3. double size = 60,
  4. Color color = Colors.blue,
  5. String gifPath = '',
  6. bool assetGif = false,
})

Implementation

const SelectLoader({
  super.key,
  required this.type,
  this.size = 60,
  this.color = Colors.blue,
  this.gifPath = '',
  this.assetGif = false,
});