CellChipTheme constructor

const CellChipTheme({
  1. Key? key,
  2. required ValueCell<ChipThemeData> data,
  3. required ValueCell<Widget> child,
})

Implementation

const CellChipTheme({
  super.key,
  required this.data,
  required this.child,
});