toActionConfigurationPropertyType method

ActionConfigurationPropertyType toActionConfigurationPropertyType()

Implementation

ActionConfigurationPropertyType toActionConfigurationPropertyType() {
  switch (this) {
    case 'String':
      return ActionConfigurationPropertyType.string;
    case 'Number':
      return ActionConfigurationPropertyType.number;
    case 'Boolean':
      return ActionConfigurationPropertyType.boolean;
  }
  throw Exception(
      '$this is not known in enum ActionConfigurationPropertyType');
}