MountPoint.fromJson constructor
Implementation
factory MountPoint.fromJson(Map<String, dynamic> json) {
  return MountPoint(
    containerPath: json['containerPath'] as String?,
    readOnly: json['readOnly'] as bool?,
    sourceVolume: json['sourceVolume'] as String?,
  );
}