linkCredentials static method

Future<CoreRealmUser?> linkCredentials(
  1. Map<String, Object> json
)

Implementation

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