VxTicket constructor

const VxTicket({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. double? width,
  5. double? height,
  6. bool? isHardEdged = false,
  7. bool? isTwoSided = false,
})

Creates a VxTicket that represents a shape.

Implementation

const VxTicket({
  super.key,
  this.child,
  this.backgroundColor,
  this.width,
  this.height,
  this.isHardEdged = false,
  this.isTwoSided = false,
});