ChipTheme constructor

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

Creates a button theme that controls the configurations for Chip.

Implementation

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