IndustryIdentifier constructor

const IndustryIdentifier({
  1. required String type,
  2. required String identifier,
})

Implementation

const IndustryIdentifier({
  required this.type,
  required this.identifier,
});