PaywallLayout constructor

const PaywallLayout({
  1. Key? key,
  2. bool primary = true,
  3. bool decoration = true,
  4. bool safeArea = false,
  5. bool? selected,
  6. PaywallScaler? scaler,
  7. PaywallStyle? style,
  8. TextDirection? textDirection,
  9. bool useDefaultTextDirection = true,
  10. required List<Widget> children,
})

Implementation

const PaywallLayout({
  super.key,
  this.primary = true,
  this.decoration = true,
  this.safeArea = false,
  this.selected,
  this.scaler,
  this.style,
  this.textDirection,
  this.useDefaultTextDirection = true,
  required this.children,
});