searchRepos method

Future<XRPCResponse<ModerationSearchReposOutput>> searchRepos({
  1. String? term,
  2. String? q,
  3. int? limit,
  4. String? cursor,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

Find repositories based on a search term.

Implementation

Future<XRPCResponse<ModerationSearchReposOutput>> searchRepos({
  String? term,
  String? q,
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneModerationSearchRepos(
  term: term,
  q: q,
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);