GalleryHeaderTheme constructor

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

Creates a GalleryHeaderTheme.

The data parameter must not be null.

Implementation

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