signInWithCustomFunction static method

Future<CoreRealmUser?> signInWithCustomFunction(
  1. String json
)

Implementation

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