toModelTypeEnum method

ModelTypeEnum toModelTypeEnum()

Implementation

ModelTypeEnum toModelTypeEnum() {
  switch (this) {
    case 'ONLINE_FRAUD_INSIGHTS':
      return ModelTypeEnum.onlineFraudInsights;
  }
  throw Exception('$this is not known in enum ModelTypeEnum');
}