CuReWelcomeScreen constructor

const CuReWelcomeScreen({
  1. Key? key,
  2. required List<CuReWelcomeScreenSection> sections,
  3. String? finishButtonLabel,
  4. Function? onFinish,
  5. Image? background,
})

Implementation

const CuReWelcomeScreen({
  super.key,
  required this.sections,
  this.finishButtonLabel,
  this.onFinish,
  this.logo,
  this.background,
});