SafaehErrorBody constructor

const SafaehErrorBody({
  1. Key? key,
  2. required String title,
  3. String? message,
  4. String? retryLabel,
  5. VoidCallback? onRetry,
  6. String? homeLabel,
  7. VoidCallback? onGoHome,
  8. List<Widget> extraActions = const <Widget>[],
})

Implementation

const SafaehErrorBody({
  super.key,
  required this.title,
  this.message,
  this.retryLabel,
  this.onRetry,
  this.homeLabel,
  this.onGoHome,
  this.extraActions = const <Widget>[],
});