toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (authToken != null) 'authToken': authToken!,
  if (cloudIdentityId != null) 'cloudIdentityId': cloudIdentityId!,
  if (customerName != null) 'customerName': customerName!,
  if (languageCode != null) 'languageCode': languageCode!,
  if (pageSize != null) 'pageSize': pageSize!,
  if (pageToken != null) 'pageToken': pageToken!,
};