toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (customerId != null) 'customerId': customerId!,
      if (googleWorkspaceCustomerId != null)
        'googleWorkspaceCustomerId': googleWorkspaceCustomerId!,
      if (limit != null) 'limit': limit!,
      if (pageToken != null) 'pageToken': pageToken!,
      if (sectionType != null) 'sectionType': sectionType!,
    };