Loader constructor

const Loader({
  1. Key? key,
  2. double? radius,
  3. Color? color,
  4. GFLoaderType? type,
  5. Widget? icon,
  6. double? size,
  7. Widget? child,
})

Implementation

const Loader(
    {Key? key,
    this.radius,
    this.color,
    this.type,
    this.icon,
    this.size,
    this.child})
    : super(key: key);