AUnexpectedError constructor

const AUnexpectedError({
  1. Key? key,
  2. required dynamic onRefresh(),
  3. String? message,
  4. String? buttonMessage,
  5. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  6. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  7. double? customHeight,
  8. bool noHeight = false,
  9. bool row = false,
})

Implementation

const AUnexpectedError({
  Key? key,
  required this.onRefresh,
  this.message,
  this.buttonMessage,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.customHeight,
  this.noHeight = false,
  this.row = false,
}) : super(key: key);