toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final comment = this.comment;
  final compatibility = this.compatibility;
  final height = this.height;
  final linkedPlacementId = this.linkedPlacementId;
  final name = this.name;
  final paymentSourceType = this.paymentSourceType;
  final primary = this.primary;
  final width = this.width;
  return {
    'comment': ?comment,
    'compatibility': ?compatibility,
    'height': ?height,
    'linkedPlacementId': ?linkedPlacementId,
    'name': ?name,
    'paymentSourceType': ?paymentSourceType,
    'primary': ?primary,
    'width': ?width,
  };
}