ModelOutputConfiguration constructor

ModelOutputConfiguration({
  1. required ModelOutputDataFormat format,
  2. Map<String, String>? csvIndexToVariableMap,
  3. Map<String, String>? jsonKeyToVariableMap,
})

Implementation

ModelOutputConfiguration({
  required this.format,
  this.csvIndexToVariableMap,
  this.jsonKeyToVariableMap,
});