signInWithCustomJwt static method

Future<CoreRealmUser?> signInWithCustomJwt(
  1. String token
)

Implementation

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