Identifier constructor

Identifier({
  1. required String name,
  2. required String id,
  3. required Uri uri,
  4. required bool nonConstant,
  5. required List<ResourceFile> files,
})

Implementation

Identifier({
  required this.name,
  required this.id,
  required this.uri,
  required this.nonConstant,
  required this.files,
});