JUITitle constructor

const JUITitle({
  1. Key? key,
  2. required String title,
  3. Widget? expandedContent,
  4. ValueNotifier<bool>? expandFlag,
})

Implementation

const JUITitle({
  Key? key,
  required this.title,
  this.expandedContent,
  this.expandFlag,
}) : assert(expandedContent == null || expandFlag != null,
'expandFlag must be provided if expandedContent is not null'),
      super(key: key);