PumaCard constructor

const PumaCard({
  1. Widget? leading,
  2. Widget? title,
  3. Widget? trailing,
  4. void onTap()?,
  5. bool disabled = false,
})

Implementation

const PumaCard({
  this.leading,
  this.title,
  this.trailing,
  this.onTap,
  this.disabled = false,
});