toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (accessType != null) 'accessType': accessType!,
  if (appFamily != null) 'appFamily': appFamily!,
  if (apps != null) 'apps': apps!,
  if (attributes != null) 'attributes': attributes!,
  if (companies != null) 'companies': companies!,
  if (createdAt != null) 'createdAt': createdAt!,
  if (developerId != null) 'developerId': developerId!,
  if (email != null) 'email': email!,
  if (firstName != null) 'firstName': firstName!,
  if (lastModifiedAt != null) 'lastModifiedAt': lastModifiedAt!,
  if (lastName != null) 'lastName': lastName!,
  if (organizationName != null) 'organizationName': organizationName!,
  if (status != null) 'status': status!,
  if (userName != null) 'userName': userName!,
};