toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (allowedGrantTypes != null) 'allowedGrantTypes': allowedGrantTypes!,
if (allowedRedirectUris != null)
'allowedRedirectUris': allowedRedirectUris!,
if (allowedScopes != null) 'allowedScopes': allowedScopes!,
if (clientId != null) 'clientId': clientId!,
if (clientType != null) 'clientType': clientType!,
if (description != null) 'description': description!,
if (disabled != null) 'disabled': disabled!,
if (displayName != null) 'displayName': displayName!,
if (expireTime != null) 'expireTime': expireTime!,
if (name != null) 'name': name!,
if (state != null) 'state': state!,
};