LoadingOverlay constructor

const LoadingOverlay({
  1. required Widget child,
  2. required bool isLoading,
  3. Color? bgColor,
  4. String? text,
  5. Key? key,
})

Implementation

const LoadingOverlay(
    {required this.child,
    required this.isLoading,
    this.bgColor,
    this.text,
    Key? key})
    : super(key: key);