toCategory method
Implementation
Category toCategory() {
switch (this) {
case 'AWSIoT':
return Category.awsIoT;
}
throw Exception('$this is not known in enum Category');
}
Category toCategory() {
switch (this) {
case 'AWSIoT':
return Category.awsIoT;
}
throw Exception('$this is not known in enum Category');
}