FirstPageExceptionIndicator constructor

const FirstPageExceptionIndicator({
  1. required String title,
  2. String? message,
  3. VoidCallback? onTryAgain,
  4. Key? key,
})

Implementation

const FirstPageExceptionIndicator({
  required this.title,
  this.message,
  this.onTryAgain,
  super.key,
});