DatasetContentDeliveryRule.fromJson constructor

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

Implementation

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