DetailsPage constructor

const DetailsPage({
  1. Key? key,
  2. required String title,
  3. String? details,
  4. required void onChanged(
    1. String
    ),
})

Implementation

const DetailsPage({
  Key? key,
  required this.title,
  this.details,
  required void Function(String) onChanged,
})  : this.isRich = false,
      this.onChanged = onChanged,
      this.onRichChanged = null,
      this.richDetails = null,
      super(key: key);