toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final application = this.application;
final clientId = this.clientId;
final customerTenantId = this.customerTenantId;
final federatedApplicationClientId = this.federatedApplicationClientId;
final identity = this.identity;
final objectId = this.objectId;
final redirectUri = this.redirectUri;
return {
'application': ?application,
'clientId': ?clientId,
'customerTenantId': ?customerTenantId,
'federatedApplicationClientId': ?federatedApplicationClientId,
'identity': ?identity,
'objectId': ?objectId,
'redirectUri': ?redirectUri,
};
}