ChannelHeaderTheme constructor

const ChannelHeaderTheme({
  1. Key? key,
  2. required ChannelHeaderThemeData data,
  3. required Widget child,
})

Creates a ChannelHeaderTheme.

The data parameter must not be null.

Implementation

const ChannelHeaderTheme({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);