makeImportPathModel function

String makeImportPathModel(
  1. String name, {
  2. String creationPath = "",
})

Implementation

String makeImportPathModel(String name, {String creationPath = ""}) =>
    "import '/app/models/${creationPath != "" ? creationPath + "/" : ""}$name.dart';";