toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final configurationId = this.configurationId;
  final customerId = this.customerId;
  final deviceIdentifier = this.deviceIdentifier;
  final deviceMetadata = this.deviceMetadata;
  final googleWorkspaceCustomerId = this.googleWorkspaceCustomerId;
  final preProvisioningToken = this.preProvisioningToken;
  final sectionType = this.sectionType;
  final simlockProfileId = this.simlockProfileId;
  return {
    'configurationId': ?configurationId,
    'customerId': ?customerId,
    'deviceIdentifier': ?deviceIdentifier,
    'deviceMetadata': ?deviceMetadata,
    'googleWorkspaceCustomerId': ?googleWorkspaceCustomerId,
    'preProvisioningToken': ?preProvisioningToken,
    'sectionType': ?sectionType,
    'simlockProfileId': ?simlockProfileId,
  };
}