AttributeTheme constructor

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

Create an attribute theme.

Implementation

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