createAppPassword method

Future<XRPCResponse<AppPassword>> createAppPassword({
  1. required String name,
})

Implementation

Future<core.XRPCResponse<AppPassword>> createAppPassword({
  required String name,
}) async =>
    await _ctx.post(
      ns.comAtprotoServerCreateAppPassword,
      body: {
        'name': name,
      },
      to: AppPassword.fromJson,
    );