toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cloudPubsubTopic = this.cloudPubsubTopic;
  final expiryTime = this.expiryTime;
  final feed = this.feed;
  final registrationId = this.registrationId;
  return {
    'cloudPubsubTopic': ?cloudPubsubTopic,
    'expiryTime': ?expiryTime,
    'feed': ?feed,
    'registrationId': ?registrationId,
  };
}