DatasetContentDeliveryRule.fromJson constructor
Implementation
factory DatasetContentDeliveryRule.fromJson(Map<String, dynamic> json) {
return DatasetContentDeliveryRule(
destination: DatasetContentDeliveryDestination.fromJson(
json['destination'] as Map<String, dynamic>),
entryName: json['entryName'] as String?,
);
}