me static method

Get the current logged ParseUser session

Implementation

static Future<ParseSession> me() async {
  final session = ParseSession(objectId: 'me');
  await session.fetch();
  return session;
}