cvBuildModel<T extends CvModel> function
Build a model but does not import the data.
Implementation
T cvBuildModel<T extends CvModel>(
Map contextData, {
CvModelBuilderFunction<T>? builder,
}) {
var foundBuilder = cvGetBuilder<T>(builder: builder);
return foundBuilder(contextData);
}