CommonErrorPage constructor

const CommonErrorPage({
  1. Key? key,
  2. required PageState pageState,
  3. Widget? icon,
  4. String? desc,
  5. String? imageAssert,
  6. Size? imageSize,
  7. double? size,
  8. Color? backgroundColor,
  9. double? space = 20,
  10. TextStyle? textStyle,
  11. TextStyle? messageStyle,
  12. Widget? buttonWidget,
  13. Map? extendInfo,
  14. String? message,
  15. GestureTapCallback? onTap,
})

Implementation

const CommonErrorPage(
    {Key? key,
    required this.pageState,
    this.icon,
    this.desc,
    this.imageAssert,
    this.imageSize,
    this.size,
    this.backgroundColor,
    this.space = 20,
    this.textStyle,
    this.messageStyle,
    this.buttonWidget,
    this.extendInfo,
    this.message,
    this.onTap})
    : super(key: key);