CustomMetadataEntry.fromJson constructor

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

Implementation

factory CustomMetadataEntry.fromJson(Map<String, dynamic> json) {
  return CustomMetadataEntry(type: json['type'], value: json['value']);
}