Identifier.fromJson constructor

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

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"],
    );