ActiveContext constructor

ActiveContext({
  1. String? featureTitle,
  2. List<String> relatedFiles = const [],
  3. List<String> recentChanges = const [],
  4. String? featureDescription,
  5. String? featureStatus,
})

Implementation

ActiveContext({
  this.featureTitle,
  this.relatedFiles = const [],
  this.recentChanges = const [],
  this.featureDescription,
  this.featureStatus,
});