ConfigSnapshotDeliveryProperties.fromJson constructor

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

Implementation

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