GifLoader constructor

const GifLoader({
  1. Key? key,
  2. required String gifPath,
  3. double size = 100,
  4. bool isNetwork = false,
})

Implementation

const GifLoader({
  super.key,
  required this.gifPath,
  this.size = 100,
  this.isNetwork = false, // default assumes asset
});