toTestGridSessionArtifactCategory method
Implementation
TestGridSessionArtifactCategory toTestGridSessionArtifactCategory() {
switch (this) {
case 'VIDEO':
return TestGridSessionArtifactCategory.video;
case 'LOG':
return TestGridSessionArtifactCategory.log;
}
throw Exception(
'$this is not known in enum TestGridSessionArtifactCategory');
}