makeController static method
Creates a new Controller.
Implementation
static Future makeController(String className, String value,
{String folderPath = controllersFolder, bool forceCreate = false}) async {
String filePath = '$folderPath/${className.toLowerCase()}_controller.dart';
await _makeDirectory(folderPath);
await _checkIfFileExists(filePath, shouldForceCreate: forceCreate);
await _createNewFile(filePath, value);
}