setUserProperty static method

Future<void> setUserProperty(
  1. Map<String, String> userProperty
)

Implementation

static Future<void> setUserProperty(Map<String, String> userProperty) async {
  return _channel
      .invokeMethod('set_user_property', {'user_property': userProperty});
}