toInclude method

Include toInclude()

Implementation

Include toInclude() {
  switch (this) {
    case 'ALL':
      return Include.all;
    case 'ANY':
      return Include.any;
    case 'NONE':
      return Include.none;
  }
  throw Exception('$this is not known in enum Include');
}