makeModel static method
dynamic
makeModel(})
Creates a new Model.
Implementation
static makeModel(String className, String value,
{String folderPath = modelsFolder,
bool storable = false,
bool forceCreate = false}) async {
String filePath = '$folderPath/${className.toLowerCase()}.dart';
await _makeDirectory(folderPath);
await _checkIfFileExists(filePath, shouldForceCreate: forceCreate);
await _createNewFile(filePath, value);
}