toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bandwidthConstrainedOk = this.bandwidthConstrainedOk;
final collapseKey = this.collapseKey;
final data = this.data;
final directBootOk = this.directBootOk;
final fcmOptions = this.fcmOptions;
final notification = this.notification;
final priority = this.priority;
final restrictedPackageName = this.restrictedPackageName;
final restrictedSatelliteOk = this.restrictedSatelliteOk;
final ttl = this.ttl;
return {
'bandwidthConstrainedOk': ?bandwidthConstrainedOk,
'collapseKey': ?collapseKey,
'data': ?data,
'directBootOk': ?directBootOk,
'fcmOptions': ?fcmOptions,
'notification': ?notification,
'priority': ?priority,
'restrictedPackageName': ?restrictedPackageName,
'restrictedSatelliteOk': ?restrictedSatelliteOk,
'ttl': ?ttl,
};
}