toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (apiProducts != null) 'apiProducts': apiProducts!,
  if (appFamily != null) 'appFamily': appFamily!,
  if (appId != null) 'appId': appId!,
  if (attributes != null) 'attributes': attributes!,
  if (callbackUrl != null) 'callbackUrl': callbackUrl!,
  if (createdAt != null) 'createdAt': createdAt!,
  if (credentials != null) 'credentials': credentials!,
  if (developerId != null) 'developerId': developerId!,
  if (keyExpiresIn != null) 'keyExpiresIn': keyExpiresIn!,
  if (lastModifiedAt != null) 'lastModifiedAt': lastModifiedAt!,
  if (name != null) 'name': name!,
  if (scopes != null) 'scopes': scopes!,
  if (status != null) 'status': status!,
};