IndustryIdentifier constructor

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

Implementation

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