LoadingDialog constructor

LoadingDialog({
  1. Key? key,
  2. Color? backgroundColor,
  3. required String text,
})

Implementation

LoadingDialog({
  Key? key,
  Color? backgroundColor,
  required this.text,
}) : super(key: key, backgroundColor: backgroundColor);