NiceColumnChooser constructor

const NiceColumnChooser({
  1. Key? key,
  2. required List<NiceColumnDef> columns,
  3. void onChanged(
    1. List<NiceColumnDef> columns
    )?,
  4. String? title,
})

Implementation

const NiceColumnChooser({
  super.key,
  required this.columns,
  this.onChanged,
  this.title,
});