toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appId = this.appId;
final createTime = this.createTime;
final displayName = this.displayName;
final hostUrl = this.hostUrl;
final name = this.name;
final peeredNetwork = this.peeredNetwork;
final secrets = this.secrets;
final sslCa = this.sslCa;
final webhookKey = this.webhookKey;
return {
'appId': ?appId,
'createTime': ?createTime,
'displayName': ?displayName,
'hostUrl': ?hostUrl,
'name': ?name,
'peeredNetwork': ?peeredNetwork,
'secrets': ?secrets,
'sslCa': ?sslCa,
'webhookKey': ?webhookKey,
};
}