LoadingThemeData constructor

const LoadingThemeData({
  1. bool dismissible = true,
  2. Curve curve = Curves.easeInOut,
  3. Alignment alignment = Alignment.center,
  4. Color barrierColor = Colors.black38,
  5. Curve reverseCurve = Curves.easeInOutBack,
  6. LoadingOverlayStyle style = const LoadingOverlayStyle(),
})

Implementation

const LoadingThemeData({
  this.dismissible = true,
  this.curve = Curves.easeInOut,
  this.alignment = Alignment.center,
  this.barrierColor = Colors.black38,
  this.reverseCurve = Curves.easeInOutBack,
  this.style = const LoadingOverlayStyle(),
});