EsigErrorWidget constructor

const EsigErrorWidget(
  1. String mensagem, {
  2. Key? key,
  3. String? ilustracaoAsset,
  4. BoxConstraints? tamanhoIlustracao,
  5. String? titulo,
  6. double? tituloFontSize,
  7. EdgeInsets tituloPadding = const EdgeInsets.all(8.0),
  8. double? mensagemFontSize,
  9. EdgeInsets mensagemPadding = const EdgeInsets.all(8.0),
  10. void onTryAgain()?,
  11. Color? tryAgainBackgroundColor,
  12. Color? tryAgainTextColor,
  13. double? altura,
  14. double? largura,
  15. Color? corTexto,
})

Implementation

const EsigErrorWidget(
  this.mensagem, {
  Key? key,
  this.ilustracaoAsset,
  this.tamanhoIlustracao,
  this.titulo,
  this.tituloFontSize,
  this.tituloPadding = const EdgeInsets.all(8.0),
  this.mensagemFontSize,
  this.mensagemPadding = const EdgeInsets.all(8.0),
  this.onTryAgain,
  this.tryAgainBackgroundColor,
  this.tryAgainTextColor,
  this.altura,
  this.largura,
  this.corTexto,
}) : super(key: key);