toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final approximationError = this.approximationError;
  final baselineOutputValue = this.baselineOutputValue;
  final featureAttributions = this.featureAttributions;
  final instanceOutputValue = this.instanceOutputValue;
  final outputDisplayName = this.outputDisplayName;
  final outputIndex = this.outputIndex;
  final outputName = this.outputName;
  return {
    'approximationError': ?approximationError,
    'baselineOutputValue': ?baselineOutputValue,
    'featureAttributions': ?featureAttributions,
    'instanceOutputValue': ?instanceOutputValue,
    'outputDisplayName': ?outputDisplayName,
    'outputIndex': ?outputIndex,
    'outputName': ?outputName,
  };
}