OmegaInfoDialogWidget constructor

OmegaInfoDialogWidget({
  1. required String? description,
  2. String? title = 'Informação!',
  3. required Color? textColor,
  4. required Color? bgColor,
})

Implementation

OmegaInfoDialogWidget({
  required this.description,
  this.title = 'Informação!',
  required this.textColor,
  required this.bgColor,
});