removeLinkedAccount static method
Implementation
static Future<String> removeLinkedAccount(
String linkedAccountId, Request request) async {
final req =
GremoveLinkedAccount((b) => b..vars.linkedAccountId = linkedAccountId);
final res = await Repository().mutate(
request,
req.operation,
req.vars.toJson(),
);
return GremoveLinkedAccountData_removeLinkedAccount_me.fromJson(res.data!)!
.id;
}