getUser static method

Future<CoreRealmUser?> getUser()

Implementation

static Future<CoreRealmUser?> getUser() async {
  var details = await FlutterMongoStitchPlatform.instance.getUser();
  return CoreRealmUser.fromMap(details);
}