PersistentVolumeClaimVolumeSource.fromJson constructor

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

Creates a PersistentVolumeClaimVolumeSource from JSON data.

Implementation

PersistentVolumeClaimVolumeSource.fromJson(Map<String, dynamic> json)
    : this(
        claimName: json['claimName'],
        readOnly: json['readOnly'],
      );