LoadingDialogView constructor

const LoadingDialogView({
  1. required String contentLoading,
  2. required int style,
  3. required Function onLoadingClose,
  4. Function? onClick,
  5. Key? key,
})

Implementation

const LoadingDialogView({
  required this.contentLoading,
  required this.style,
  required this.onLoadingClose,
  this.onClick,
  super.key});