Loading constructor

const Loading({
  1. Key? key,
  2. double width = 50.0,
  3. EdgeInsets? padding,
  4. Color? color,
})

Implementation

const Loading({
  Key? key,
  this.width = 50.0,
  this.padding,
  this.color,
}) : super(key: key);