ARFF constructor

ARFF(
  1. String relation,
  2. List<ARFFAttributes> attributesList,
  3. List<List<ARFFData>> data
)

Creates an ARFF object with the specified relation, attributesList, and data.

Implementation

ARFF(this.relation, this.attributesList, this.data);