toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endDate = this.endDate;
final grp = this.grp;
final id = this.id;
final impressions = this.impressions;
final kind = this.kind;
final name = this.name;
final spend = this.spend;
final startDate = this.startDate;
final type = this.type;
return {
'endDate': ?endDate,
'grp': ?grp,
'id': ?id,
'impressions': ?impressions,
'kind': ?kind,
'name': ?name,
'spend': ?spend,
'startDate': ?startDate,
'type': ?type,
};
}