EsigDialogWidget constructor

EsigDialogWidget({
  1. Key? key,
  2. Widget? icone,
  3. String? titulo,
  4. double? tamanhoTitulo,
  5. required String mensagem,
  6. double? tamanhoMensagem,
  7. Axis? direcaoBotoes = Axis.horizontal,
  8. void onPressedPrincipal()?,
  9. void onPressedSecundario()?,
  10. void onPressedTerciario()?,
  11. Text? textoPrincipal = const Text('OK'),
  12. Text? textoSecundario = const Text('OK'),
  13. Text? textoTerciario = const Text('OK'),
  14. EdgeInsets? paddingTitulo,
})

Implementation

EsigDialogWidget({
  Key? key,
  this.icone,
  this.titulo,
  this.tamanhoTitulo,
  required this.mensagem,
  this.tamanhoMensagem,
  this.direcaoBotoes = Axis.horizontal,
  this.onPressedPrincipal,
  this.onPressedSecundario,
  this.onPressedTerciario,
  this.textoPrincipal = const Text('OK'),
  this.textoSecundario = const Text('OK'),
  this.textoTerciario = const Text('OK'),
  this.paddingTitulo,
}) : super(key: key);