createInviteCodes method
Implementation
Future<core.XRPCResponse<CreatedInviteCodes>> createInviteCodes({
required int codeCount,
required int useCount,
List<String>? forAccounts,
}) async =>
await _ctx.post(
ns.comAtprotoServerCreateInviteCodes,
body: {
'codeCount': codeCount,
'useCount': useCount,
'forAccounts': forAccounts,
},
to: CreatedInviteCodes.fromJson,
);