Deletes the account Be careful to not use an account after it is been deleted
Future<bool> delete() async { bool r = await Requests.delete('/accounts/$id', auth); if (r) { auths.remove(id); } return r; }