StreamGalleryHeaderTheme constructor

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

Creates a StreamGalleryHeaderTheme.

The data parameter must not be null.

Implementation

const StreamGalleryHeaderTheme({
  super.key,
  required this.data,
  required super.child,
});