TicketWidget constructor
const
TicketWidget({
- Key? key,
- required double width,
- required double height,
- required Widget child,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- Color color = Colors.white,
- bool isCornerRounded = false,
- List<
BoxShadow> ? shadow,
Implementation
const TicketWidget({
Key? key,
required this.width,
required this.height,
required this.child,
this.padding,
this.margin,
this.color = Colors.white,
this.isCornerRounded = false,
this.shadow,
}) : super(key: key);