NiceReportHeader constructor

const NiceReportHeader({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. String? dateRange,
})

Implementation

const NiceReportHeader({
  super.key,
  required this.title,
  this.subtitle,
  this.dateRange,
  this.logo,
});