Identifier.fromJson constructor
Implementation
factory Identifier.fromJson(Map<String, dynamic> json) => Identifier(
identifier: json["identifier"],
index: json["index"],
mediaType: json["mediaType"],
file: json["file"],
identifierType: json["identifierType"],
identifierExpiresInSeconds: json["identifierExpiresInSeconds"],
);