LevitTaskMetadata constructor

const LevitTaskMetadata({
  1. String? debugName,
  2. String? category,
  3. bool blocksUserInteraction = false,
  4. bool sensitive = false,
  5. Map<String, Object?> attributes = const {},
})

Creates task metadata.

Implementation

const LevitTaskMetadata({
  this.debugName,
  this.category,
  this.blocksUserInteraction = false,
  this.sensitive = false,
  this.attributes = const {},
});