setUserProperties static method

void setUserProperties(
  1. Map propertyMap
)

Sync a series of user meta information with Freshchat

Implementation

static void setUserProperties(Map propertyMap) async {
  await _channel.invokeMethod('setUserProperties', <String, Map>{
    'propertyMap': propertyMap,
  });
}