ContainerLoading constructor

const ContainerLoading({
  1. Key? key,
  2. required Widget loadingWidget,
  3. required Widget child,
  4. bool isLoading = true,
  5. double? width,
  6. double? height,
})

Implementation

const ContainerLoading({
  Key? key,
  required this.loadingWidget,
  required this.child,
  this.isLoading = true,
  this.width,
  this.height,
}) : super(key: key);