TabbedViewTheme constructor

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

Applies the given theme data to child.

The data and child arguments must not be null.

Implementation

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