stringValue property

String stringValue

Implementation

String get stringValue {
  switch (this) {
    case AssistantUserJourney.SEARCH:
      return 'retail_search';
    case AssistantUserJourney.NAVIGATION:
      return 'retail_navigation';
    case AssistantUserJourney.ORDER_MANAGEMENT:
      return 'retail_order_management';
    default:
      return "retail_search";
  }
}