RoomStorageMountSpec.fromJson constructor
Implementation
factory RoomStorageMountSpec.fromJson(Map<String, dynamic> json) {
return RoomStorageMountSpec(path: json['path'] as String, subpath: json['subpath'] as String?, readOnly: json['read_only']);
}