toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final effectiveBiddingValue = this.effectiveBiddingValue;
final effectiveBiddingValueSource = this.effectiveBiddingValueSource;
final type = this.type;
final value = this.value;
return {
'effectiveBiddingValue': ?effectiveBiddingValue,
'effectiveBiddingValueSource': ?effectiveBiddingValueSource,
'type': ?type,
'value': ?value,
};
}