toJson method

  1. @override
Object toJson()
override

Implementation

@override
Object toJson() {
  return {
    if (driftThresholds.isNotDefault)
      'driftThresholds': encodeMap(driftThresholds),
    if (attributionScoreDriftThresholds.isNotDefault)
      'attributionScoreDriftThresholds': encodeMap(
        attributionScoreDriftThresholds,
      ),
    if (defaultDriftThreshold != null)
      'defaultDriftThreshold': defaultDriftThreshold!.toJson(),
  };
}