createTKeyFileFromPath function

String createTKeyFileFromPath(
  1. String masterFile, {
  2. bool save = false,
})

Implementation

String createTKeyFileFromPath(String masterFile, {bool save = false}) {
  final map = openJson(masterFile);
  _classCounter = 1;
  return createTKeyFileFromMap(KeyMap.from(map), save: save);
}