ConfigSnapshotDeliveryProperties.fromJson constructor
Implementation
factory ConfigSnapshotDeliveryProperties.fromJson(Map<String, dynamic> json) {
return ConfigSnapshotDeliveryProperties(
deliveryFrequency:
(json['deliveryFrequency'] as String?)?.toMaximumExecutionFrequency(),
);
}