modelFilePath property

String get modelFilePath

Implementation

String get modelFilePath {
  String actionName2 = actionName.toSnakeCase();
  if (isMVVM) {
    return "models/${actionName2}_model.dart";
  }
  return "infrastructure/models/${actionName2}_model.dart";
}