toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final filter = this.filter;
  final orderBy = this.orderBy;
  final pageSize = this.pageSize;
  final pageToken = this.pageToken;
  final projectIds = this.projectIds;
  final resourceNames = this.resourceNames;
  return {
    'filter': ?filter,
    'orderBy': ?orderBy,
    'pageSize': ?pageSize,
    'pageToken': ?pageToken,
    'projectIds': ?projectIds,
    'resourceNames': ?resourceNames,
  };
}