ChipInputTheme constructor

const ChipInputTheme({
  1. double? spacing,
  2. bool? useChips,
})

Creates a ChipInputTheme.

All parameters are optional and fall back to framework defaults when null. The theme can be applied globally or to specific chip input instances.

Implementation

const ChipInputTheme({
  this.spacing,
  this.useChips,
});