ErrorViewScaffold constructor

const ErrorViewScaffold({
  1. Key? key,
  2. String title = 'Something is not right!',
  3. String? subtitle,
  4. dynamic error,
  5. VoidCallback? onRetry,
  6. bool showRestart = true,
  7. String? retryLabel,
})

Implementation

const ErrorViewScaffold({
  super.key,
  this.title = 'Something is not right!',
  this.subtitle,
  this.error,
  this.onRetry,
  this.showRestart = true,
  this.retryLabel,
});