CSIVolumeSource.fromJson constructor
CSIVolumeSource.fromJson(
- Map json_
Implementation
CSIVolumeSource.fromJson(core.Map json_)
: this(
driver: json_['driver'] as core.String?,
readOnly: json_['readOnly'] as core.bool?,
volumeAttributes: (json_['volumeAttributes']
as core.Map<core.String, core.dynamic>?)
?.map((key, value) => core.MapEntry(key, value as core.String)),
);