ARFFModelCreationParameter constructor

const ARFFModelCreationParameter({
  1. required ARFF arff,
  2. required String className,
})

Creates an instance of ARFFModelCreationParameter.

Takes arff and className parameters and assigns them to the class's internal variables.

Implementation

const ARFFModelCreationParameter({
  required this.arff,
  required this.className,
});