LocalVolumeSource.fromJson constructor
Creates a LocalVolumeSource from JSON data.
Implementation
factory LocalVolumeSource.fromJson(Map<String, dynamic> json) {
final tempFsTypeJson = json['fsType'];
final tempPathJson = json['path'];
final String? tempFsType = tempFsTypeJson;
final String tempPath = tempPathJson;
return LocalVolumeSource(
fsType: tempFsType,
path: tempPath,
);
}