SecretVolumeSource.fromJson constructor
SecretVolumeSource.fromJson(
- Map json_
Implementation
SecretVolumeSource.fromJson(core.Map json_)
: this(
defaultMode: json_['defaultMode'] as core.int?,
items: (json_['items'] as core.List?)
?.map((value) => KeyToPath.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
optional: json_['optional'] as core.bool?,
secretName: json_['secretName'] as core.String?,
);