IdentifierMetaData.fromJson constructor
Creates an instance of IdentifierMetaData from a JSON map.
This factory constructor is used to deserialize a JSON map into an IdentifierMetaData instance. It is useful for creating identifiable metadata from JSON data.
Parameters:
json
- A map representing JSON data.
Returns: An instance of IdentifierMetaData.
Implementation
factory IdentifierMetaData.fromJson(Map<String, dynamic> json) =>
IdentifierMetaData(
key: json["key"],
value: json["value"],
);