createModel function

void createModel(
  1. String modelName,
  2. String featureName,
  3. String jsonFilePath
)

create model

Implementation

void createModel(String modelName, String featureName, String jsonFilePath) {
  create_model_cli.generateDartModel(modelName, featureName, jsonFilePath);
}