toJoinType method

JoinType toJoinType()

Implementation

JoinType toJoinType() {
  switch (this) {
    case 'INNER':
      return JoinType.inner;
    case 'OUTER':
      return JoinType.outer;
    case 'LEFT':
      return JoinType.left;
    case 'RIGHT':
      return JoinType.right;
  }
  throw Exception('$this is not known in enum JoinType');
}