MetadataInfo.fromJson constructor

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

Implementation

factory MetadataInfo.fromJson(Map<String, dynamic> json) {
  return MetadataInfo(
    createdTime: json['CreatedTime'] as String?,
    metadataValue: json['MetadataValue'] as String?,
  );
}