logout method

Future logout(
  1. int id
)

Logs out acccount with id from the snap store.

Implementation

Future logout(int id) async {
  await _postSync('/v2/logout', {'id': id});
}