fromJson static method
Implementation
static ProjectStorageMountSpec fromJson(Map<String, dynamic> json) {
return ProjectStorageMountSpec(
path: json['path'] as String,
subpath: json['subpath'] as String?,
readOnly: (json['read_only'] as bool?) ?? true,
);
}