CardWidget constructor

const CardWidget({
  1. Key? key,
  2. String label = '',
  3. String subLabel = '',
  4. String color = 'white',
  5. bool disabled = false,
  6. bool checked = true,
  7. dynamic onTap()?,
})

Implementation

const CardWidget(
    {Key? key,
    this.label = '',
    this.subLabel = '',
    this.color = 'white',
    this.disabled = false,
    this.checked = true,
    this.onTap})
    : super(key: key);