EsigErrorWidget constructor

const EsigErrorWidget({
  1. Key? key,
  2. String? ilustracaoAsset,
  3. BoxConstraints? tamanhoIlustracao,
  4. String? titulo,
  5. double? tituloFontSize,
  6. EdgeInsets tituloPadding = const EdgeInsets.all(8.0),
  7. required String mensagem,
  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,
})

Implementation

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