MountPoint.fromJson constructor

MountPoint.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}