toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (accountIdentifier != null) 'accountIdentifier': accountIdentifier!,
  if (accountType != null) 'accountType': accountType!,
  if (displayName != null) 'displayName': displayName!,
  if (id != null) 'id': id!,
  if (managementType != null) 'managementType': managementType!,
  if (primaryEmail != null) 'primaryEmail': primaryEmail!,
};