This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH=/Users/giovanny/.oh-my-zsh | |
| # Set name of the theme to load. Optionally, if you set this to "random" | |
| # it'll load a random theme each time that oh-my-zsh is loaded. | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
| ZSH_THEME="norm" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { useSelector, useDispatch } from 'react-redux'; | |
| const useRedux = feature => { | |
| const state = useSelector(store => store[feature.name]); | |
| const dispatch = useDispatch(); | |
| const dispatchAction = payload => action => dispatch(action(payload)); | |
| const actions = Object.keys(feature.actions).reduce((prev, key) => { | |
| return { | |
| ...prev, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import 'dart:async'; | |
| import 'package:bloc/bloc.dart'; | |
| import 'package:bot_toast/bot_toast.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:meta/meta.dart'; | |
| import 'package:neopag_mobile_store_v2/bloc/modules/customerQuery/bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/bloc/modules/store/bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/components/suitability/chatMessageFrame.dart'; | |
| import 'package:neopag_mobile_store_v2/helpers/dataProvider.dart'; | |
| import 'package:neopag_mobile_store_v2/helpers/helpers.dart'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import 'dart:async'; | |
| import 'package:flutter/cupertino.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:neopag_mobile_store_v2/colors.dart'; | |
| enum ChatMessageFrameAlignment { left, right } | |
| class ChatMessageFrame extends StatefulWidget { | |
| final ChatMessageFrameAlignment alignment; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'chatMessageFrame.dart'; | |
| class TypingFeedback extends StatefulWidget { | |
| final Function callback; | |
| TypingFeedback({ | |
| @required this.callback, | |
| }); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import 'package:flutter/material.dart'; | |
| import 'package:flutter_bloc/flutter_bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/bloc/modules/customerQuery/bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/bloc/modules/store/bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/bloc/modules/suitability/bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/components/customerHeader.dart'; | |
| import 'package:neopag_mobile_store_v2/components/suitability/answerButtons.dart'; | |
| import 'package:neopag_mobile_store_v2/components/suitability/chatMessageFrame.dart'; | |
| import 'package:neopag_mobile_store_v2/components/suitability/completedButtons.dart'; | |
| import 'package:neopag_mobile_store_v2/components/suitability/typingFeedback.dart'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | enum EnvMode { dev, staging, prod } | |
| class EnvProvider { | |
| static final EnvProvider _instance = new EnvProvider._(); | |
| EnvMode _env; | |
| Map<String, dynamic> devEnv = { | |
| 'label': 'Development', | |
| 'baseUrl': 'https://randomurl', | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import 'package:flutter/material.dart'; | |
| import 'package:flutter_bloc/flutter_bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/bloc/modules/webView/bloc.dart'; | |
| import 'package:neopag_mobile_store_v2/helpers/envProvider.dart'; | |
| import 'package:webview_flutter/webview_flutter.dart'; | |
| class WebViewScreen extends StatefulWidget { | |
| final String route; | |
| final String title; | |
| final String urlParams; |