toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final nextPageToken = this.nextPageToken;
final notifications = this.notifications;
final totalSize = this.totalSize;
return {
'nextPageToken': ?nextPageToken,
'notifications': ?notifications,
'totalSize': ?totalSize,
};
}