toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bootstrapServer = this.bootstrapServer;
final clusterId = this.clusterId;
final gcpServiceAccount = this.gcpServiceAccount;
final identityPoolId = this.identityPoolId;
final state = this.state;
final topic = this.topic;
return {
'bootstrapServer': ?bootstrapServer,
'clusterId': ?clusterId,
'gcpServiceAccount': ?gcpServiceAccount,
'identityPoolId': ?identityPoolId,
'state': ?state,
'topic': ?topic,
};
}