toBlockerType method

BlockerType toBlockerType()

Implementation

BlockerType toBlockerType() {
  switch (this) {
    case 'Schedule':
      return BlockerType.schedule;
  }
  throw Exception('$this is not known in enum BlockerType');
}