PfdBasePage constructor
- required int index,
- required int total,
- required Test data,
- required Interpretations2? interpretation,
- required Interpretations2? interpretation2,
- required Widget body,
Creates a new instance of PfdBasePage.
index is the current page index.
total is the total number of pages.
data contains the test data.
interpretation is the first interpretation data.
interpretation2 is the second interpretation data.
body is the main content of the page.
Implementation
PfdBasePage({
required this.index,
required this.total,
required this.data,
required this.interpretation,
required this.interpretation2,
required this.body,
});