FileSystemConfig.fromJson constructor
Implementation
factory FileSystemConfig.fromJson(Map<String, dynamic> json) {
return FileSystemConfig(
defaultGid: json['DefaultGid'] as int?,
defaultUid: json['DefaultUid'] as int?,
mountPath: json['MountPath'] as String?,
);
}