getControllerPath method

String getControllerPath(
  1. String moduleName
)

Implementation

String getControllerPath(String moduleName) {
  final path = controllerPath.replaceAll('{{model}}', moduleName.toSnakeCase());

  return '${path}controller.dart';
}