DeliverConfigSnapshotResponse.fromJson constructor

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

Implementation

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