revokeAppPassword method

Future<XRPCResponse<EmptyData>> revokeAppPassword({
  1. required String name,
})

Implementation

Future<core.XRPCResponse<core.EmptyData>> revokeAppPassword({
  required String name,
}) async =>
    await _ctx.post(
      ns.comAtprotoServerRevokeAppPassword,
      body: {
        'name': name,
      },
    );