toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (configurationId != null) 'configurationId': configurationId!,
  if (customerId != null) 'customerId': customerId!,
  if (deviceIdentifier != null) 'deviceIdentifier': deviceIdentifier!,
  if (deviceMetadata != null) 'deviceMetadata': deviceMetadata!,
  if (googleWorkspaceCustomerId != null)
    'googleWorkspaceCustomerId': googleWorkspaceCustomerId!,
  if (preProvisioningToken != null)
    'preProvisioningToken': preProvisioningToken!,
  if (sectionType != null) 'sectionType': sectionType!,
  if (simlockProfileId != null) 'simlockProfileId': simlockProfileId!,
};