NiceRetryPanel constructor

const NiceRetryPanel({
  1. Key? key,
  2. String? errorMessage,
  3. String? errorDetails,
  4. Future<void> onRetry()?,
  5. Widget? illustration,
  6. String retryLabel = 'Spróbuj ponownie',
  7. bool showDetails = false,
  8. bool loading = false,
})

Implementation

const NiceRetryPanel({
  super.key,
  this.errorMessage,
  this.errorDetails,
  this.onRetry,
  this.illustration,
  this.retryLabel = 'Spróbuj ponownie',
  this.showDetails = false,
  this.loading = false,
});