toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clipPercentLowerbound = this.clipPercentLowerbound;
  final clipPercentUpperbound = this.clipPercentUpperbound;
  final colorMap = this.colorMap;
  final overlayType = this.overlayType;
  final polarity = this.polarity;
  final type = this.type;
  return {
    'clipPercentLowerbound': ?clipPercentLowerbound,
    'clipPercentUpperbound': ?clipPercentUpperbound,
    'colorMap': ?colorMap,
    'overlayType': ?overlayType,
    'polarity': ?polarity,
    'type': ?type,
  };
}