createModel static method
create model
Implementation
static void createModel({
required String modelName,
required String featureName,
required String jsonFilePath,
}) =>
CreateModel().generateDartModel(
modelName: modelName,
featureName: featureName,
jsonFilePath: jsonFilePath,
);