updateContact method

Future<void> updateContact({
  1. dynamic userProperties,
})

Implementation

Future<void> updateContact({dynamic userProperties}) async {
  String? stringifiedHashMap = jsonEncode(userProperties);

  await GleapJsSdkHelper.updateContact(stringifiedHashMap);
}