LoadingContainer constructor

const LoadingContainer({
  1. Key? key,
  2. required LoadingController controller,
  3. required Widget child,
  4. Widget? loadingBody,
})

Implementation

const LoadingContainer(
    {Key? key,
    required this.controller,
    required this.child,
    this.loadingBody})
    : super(key: key);