SeniorStatePage constructor

const SeniorStatePage({
  1. Key? key,
  2. List<SeniorButton>? actions,
  3. required Widget illustration,
  4. SeniorStatePageStyle? style,
  5. String? subTitle,
  6. required String title,
})

Create a status information page.

The iconData and title parameters are required.

Implementation

const SeniorStatePage({
  Key? key,
  this.actions,
  required this.illustration,
  this.style,
  this.subTitle,
  required this.title,
}) : super(key: key);