CommonBasePage constructor

const CommonBasePage({
  1. Key? key,
  2. required PageState pageState,
  3. HttpException? baseError,
  4. dynamic buttonActionCallback(
    1. int index
    )?,
  5. Widget? child,
  6. Widget? errorWidget,
  7. String? desc,
  8. Size? imageSize,
  9. String? imageAssert,
  10. String? placetype,
  11. String? message,
  12. bool? isshowloading = false,
})

Implementation

const CommonBasePage(
    {Key? key,
    required this.pageState,
    this.baseError,
    this.buttonActionCallback,
    this.child,
    this.errorWidget,
    this.desc,
    this.imageSize,
    this.imageAssert,
    this.placetype,
    this.message,
    this.isshowloading = false})
    : super(key: key);