toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final biddingState = this.biddingState;
final createTime = this.createTime;
final displayName = this.displayName;
final name = this.name;
final publisherPlatform = this.publisherPlatform;
return {
'biddingState': ?biddingState,
'createTime': ?createTime,
'displayName': ?displayName,
'name': ?name,
'publisherPlatform': ?publisherPlatform,
};
}