LoadingBox constructor

const LoadingBox({
  1. Key? key,
  2. required Widget child,
  3. bool loading = false,
})

Implementation

const LoadingBox({super.key, required this.child, this.loading = false});