OmegaLoadingDialogWidget constructor

OmegaLoadingDialogWidget(
  1. Function loadingFunc, {
  2. required String? description,
  3. String? title = 'Carregando...',
  4. required Color? textColor,
  5. required Color? bgColor,
})

Implementation

OmegaLoadingDialogWidget(
  this.loadingFunc, {
  required this.description,
  this.title = 'Carregando...',
  required this.textColor,
  required this.bgColor,
});