listRepos method
Implementation
Future<core.XRPCResponse<Repos>> listRepos({
int? limit,
String? cursor,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.comAtprotoSyncListRepos,
headers: headers,
parameters: {
'limit': limit,
'cursor': cursor,
},
to: Repos.fromJson,
);