VDialogNestedContent constructor

const VDialogNestedContent({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. required String description,
  5. required String pageNumber,
  6. required Color pageNumberBackgroundColor,
})

Implementation

const VDialogNestedContent({
  Key? key,
  required this.title,
  required this.subtitle,
  required this.description,
  required this.pageNumber,
  required this.pageNumberBackgroundColor,
}) : super(key: key);