fromJson static method

IndustryIdentifier fromJson(
  1. Map<String, dynamic> json
)

Implementation

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