toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (attributeCondition != null) 'attributeCondition': attributeCondition!,
  if (attributeMapping != null) 'attributeMapping': attributeMapping!,
  if (aws != null) 'aws': aws!,
  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 (oidc != null) 'oidc': oidc!,
  if (saml != null) 'saml': saml!,
  if (state != null) 'state': state!,
  if (x509 != null) 'x509': x509!,
};