DigitRowCard constructor

const DigitRowCard({
  1. Key? key,
  2. ValueChanged<DigitRowCardModel>? onChanged,
  3. required List<DigitRowCardModel> rowItems,
  4. required double width,
  5. double spacing = kPadding,
  6. WrapAlignment alignment = WrapAlignment.start,
})

Implementation

const DigitRowCard(
    {super.key,
    this.onChanged,
    required this.rowItems,
    required this.width,
    this.spacing = kPadding,
    this.alignment = WrapAlignment.start});