WorkspacePackage.fromMap constructor
Implementation
factory WorkspacePackage.fromMap(Map<Object?, Object?> value) {
return WorkspacePackage(
id: _requiredString(value, 'id'),
path: _requiredString(value, 'path'),
roots: _requiredStrings(value, 'roots'),
);
}