FileSystemConfig.fromJson constructor

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

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