NiceSavedQueryPanel constructor

const NiceSavedQueryPanel({
  1. Key? key,
  2. required List<SavedQuery> queries,
  3. ValueChanged<SavedQuery>? onRun,
  4. ValueChanged<SavedQuery>? onDelete,
  5. ValueChanged<SavedQuery>? onShare,
  6. void onPin(
    1. SavedQuery q,
    2. bool pinned
    )?,
  7. bool showSearch = true,
})

Implementation

const NiceSavedQueryPanel({
  super.key,
  required this.queries,
  this.onRun,
  this.onDelete,
  this.onShare,
  this.onPin,
  this.showSearch = true,
});