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