createInviteCode method
Implementation
Future<core.XRPCResponse<CreatedInviteCode>> createInviteCode({
required int useCount,
String? forAccount,
}) async =>
await _ctx.post(
ns.comAtprotoServerCreateInviteCode,
body: {
'useCount': useCount,
'forAccount': forAccount,
},
to: CreatedInviteCode.fromJson,
);