signInWithCustomJwt static method
Implementation
static Future<CoreRealmUser?> signInWithCustomJwt(String token) async {
var details =
await FlutterMongoStitchPlatform.instance.signInWithCustomJwt(token);
return CoreRealmUser.fromMap(details);
}