DeskStatusPill constructor

const DeskStatusPill({
  1. Key? key,
  2. required DocumentVersionStatus status,
  3. bool hasUnsavedChanges = false,
})

Implementation

const DeskStatusPill({
  super.key,
  required this.status,
  this.hasUnsavedChanges = false,
});