DetailsPage.rich constructor
Implementation
const DetailsPage.rich(
{Key? key,
required this.title,
required List<dynamic> details,
required void Function(List<dynamic>) onChanged})
: this.isRich = true,
this.onRichChanged = onChanged,
this.richDetails = details,
this.onChanged = null,
this.details = null,
super(key: key);