process method

Future<void> process()

Implementation

Future<void> process() async {
  if (await fileExists(jsonFilePath)) {
    _loadObjects(jsonFilePath);
    _platformSpecificSetup();
    _getMainCode();
  } else {
    print('The json file you provided doesnt exists!');
  }
}