ChipTheme constructor Null safety

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

Applies the given theme data to child.

The data and child arguments must not be null.

Implementation

const ChipTheme({
  super.key,
  required this.data,
  required super.child,
}) : assert(child != null),
     assert(data != null);