ApprovalSummaryCard constructor

const ApprovalSummaryCard({
  1. Key? key,
  2. dynamic onTapFunction()?,
  3. required List<String> titles,
  4. required List<String> values,
  5. dynamic pdfTap()?,
  6. dynamic acceptTap()?,
  7. dynamic attachmentTap()?,
  8. dynamic deleteTap()?,
  9. dynamic historyTap()?,
  10. Map<String, dynamic>? header,
})

Implementation

const ApprovalSummaryCard({
  Key? key,
  this.onTapFunction,
  required this.titles,
  required this.values,
  this.pdfTap,
  this.acceptTap,
  this.attachmentTap,
  this.deleteTap,
  this.historyTap,
  this.header,
}) : super(key: key);