toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final apiKey = this.apiKey;
final connectedRepositories = this.connectedRepositories;
final createTime = this.createTime;
final hostUri = this.hostUri;
final name = this.name;
final peeredNetwork = this.peeredNetwork;
final peeredNetworkIpRange = this.peeredNetworkIpRange;
final secrets = this.secrets;
final sslCa = this.sslCa;
final username = this.username;
final webhookKey = this.webhookKey;
return {
'apiKey': ?apiKey,
'connectedRepositories': ?connectedRepositories,
'createTime': ?createTime,
'hostUri': ?hostUri,
'name': ?name,
'peeredNetwork': ?peeredNetwork,
'peeredNetworkIpRange': ?peeredNetworkIpRange,
'secrets': ?secrets,
'sslCa': ?sslCa,
'username': ?username,
'webhookKey': ?webhookKey,
};
}