
### App Language Setup ###
1. Create language json file under assets/language
2. Add fileName entry in Pubspec.ymal
2. Prefix with lang_ and desired language code. (Example: lang_bn.json)
   (language code ref:)
3. Add language support in AppConfig configuration : (Example: _configuration.app.language = ['en', 'bn'];)

### Create excel Template for client to translate in their language using online following tools
1. To make excel : https://json-csv.com/
2. From excel to json : http://beautifytools.com/json-to-csv-converter.php


### if global error = false then call following run method in ReapidFire start
run((app) => runApp(app))
Example :
RapidFire(
   AppConfig(),
   initializeReflectable,
   globalError: false,
 ).run((app) => runApp(app));


### To generate model reflection file run following command in Terminal :
flutter packages pub run build_runner build

dart pub publish --dry-run