BaseView.builder constructor

const BaseView.builder({
  1. Key? key,
  2. dynamic arguments,
  3. ScreenModePackage screenMode = ScreenModePackage.FULL_SCREEN,
  4. BottomMenuPackage bottomMenu = BottomMenuPackage.NONE,
  5. bool isScroll = true,
  6. Function? onCallback,
  7. String? screenTitle,
  8. double? productNameTextSize,
  9. Color? productNameTextColor,
  10. double? productAmountTextSize,
  11. Color? productAmountTextColor,
  12. Color? cardViewBgColor,
  13. double? cardViewTextSize,
  14. Color? cardViewTextColor,
  15. Color? cardViewTextHintColor,
  16. double? confirmButtonTextSize,
  17. Color? confirmButtonTextColor,
})

Implementation

const BaseView.builder({
  Key? key,
  this.arguments,
  this.screenMode = ScreenModePackage.FULL_SCREEN,
  this.bottomMenu = BottomMenuPackage.NONE,
  this.isScroll = true,
  this.onCallback,
  this.screenTitle,
  this.productNameTextSize,
  this.productNameTextColor,
  this.productAmountTextSize,
  this.productAmountTextColor,
  this.cardViewBgColor,
  this.cardViewTextSize,
  this.cardViewTextColor,
  this.cardViewTextHintColor,
  this.confirmButtonTextSize,
  this.confirmButtonTextColor,
}) : super(key: key);