toCategory method

Category toCategory()

Implementation

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