EasyLoader constructor

const EasyLoader({
  1. Key? key,
  2. Color? backgroundColor,
  3. Animation<Offset>? animation,
  4. required ImageProvider<Object> image,
  5. double iconSize = 120.0,
  6. Color iconColor = Colors.black,
})

Implementation

const EasyLoader(
    {Key? key,
    this.backgroundColor,
    this.animation,
    required this.image,
    this.iconSize = 120.0,
    this.iconColor = Colors.black})
    : super(key: key);