fromJson static method
Implementation
static IndustryIdentifier fromJson(Map<String, dynamic> json) {
return IndustryIdentifier(
type: json['type'] ?? '',
identifier: json['identifier'] ?? '',
);
}
static IndustryIdentifier fromJson(Map<String, dynamic> json) {
return IndustryIdentifier(
type: json['type'] ?? '',
identifier: json['identifier'] ?? '',
);
}