getSessions method

Future<MixinResponse<List<UserSession>>> getSessions(
  1. List<String> ids
)

Implementation

Future<MixinResponse<List<UserSession>>> getSessions(List<String> ids) =>
    MixinResponse.requestList(
      dio.post('/sessions/fetch', data: ids),
      UserSession.fromJson,
    );