updateHandle method

Future<XRPCResponse<EmptyData>> updateHandle({
  1. required String handle,
})

Implementation

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