ARFFData constructor

ARFFData({
  1. required String name,
  2. required String value,
})

Creates an ARFF data entry with the given name and value.

Both name and value are required to represent a valid data entry in the ARFF file.

Implementation

ARFFData({required this.name, required this.value});