NiceComponentInfo constructor

const NiceComponentInfo({
  1. required String name,
  2. required String path,
  3. int estimatedSizeBytes = 0,
  4. Set<String> dependencies = const {},
  5. Set<String> usedBy = const {},
  6. bool isExported = false,
  7. bool isUsed = false,
})

Implementation

const NiceComponentInfo({
  required this.name,
  required this.path,
  this.estimatedSizeBytes = 0,
  this.dependencies = const {},
  this.usedBy = const {},
  this.isExported = false,
  this.isUsed = false,
});