LandingPageScreen constructor

const LandingPageScreen({
  1. Key? key,
  2. required void onFinish(),
  3. required List<int> listStatus,
  4. required Widget nextPage,
  5. bool? autoNextPage = true,
  6. bool? doFinish,
})

Implementation

const LandingPageScreen({
  super.key,
  required this.onFinish,
  required this.listStatus,
  required this.nextPage,
  this.autoNextPage = true,
  this.doFinish,
});