Loading constructor

const Loading({
  1. Key? key,
  2. String? text,
  3. Color? color,
  4. double size = Style.loadingSpinnerSize,
  5. double textSize = Style.loadingTextFontSize,
  6. bool vertical = false,
  7. Widget? loading,
})

Implementation

const Loading(
    {Key? key,
    this.text,
    this.color,
    this.size: Style.loadingSpinnerSize,
    this.textSize: Style.loadingTextFontSize,
    this.vertical: false,
    this.loading})
    : super(key: key);