CTitle<T extends ConjuredTitle> constructor

const CTitle<T extends ConjuredTitle>({
  1. Key? key,
  2. required T model,
})

Creates a CTitle widget.

The model parameter must implement ConjuredTitle and is used to retrieve the title text to display.

Implementation

const CTitle({super.key, required this.model});