killSessions method

Future killSessions(
  1. String killType
)

kills multiple auth token sessions at once.

Implementation

Future<dynamic> killSessions(String killType) async {
  return await _client.send(
    method: "DELETE",
    url: "${Endpoints().oauthTokenDeleteMultiple}?killType=$killType",
  );
}