CardColumnWidget constructor

CardColumnWidget({
  1. Key? key,
  2. required String label,
  3. String? value,
  4. Widget? customValue,
})

Implementation

CardColumnWidget(
    {super.key, required this.label, this.value, this.customValue}) {
  assert((customValue == null) != (value == null),
      'Either customValue or value must be provided, but not both.');
}