LoadIndicator constructor

const LoadIndicator({
  1. Key? key,
  2. VoidCallback? onClick,
  3. LoadStyle loadStyle = LoadStyle.ShowAlways,
  4. double height = 60.0,
})

Implementation

const LoadIndicator(
    {Key? key,
    this.onClick,
    this.loadStyle: LoadStyle.ShowAlways,
    this.height: 60.0})
    : super(key: key);