CsvDataPage constructor

const CsvDataPage({
  1. Key? key,
  2. required AppAttributes appAttributes,
  3. required Footer footer,
  4. required Widget child,
})

Implementation

const CsvDataPage({
  super.key,
  required this.appAttributes,
  required this.footer,
  required this.child,
});