setFlyyUserWithSegment static method

Future<String> setFlyyUserWithSegment(
  1. String externalUserId,
  2. String segmentId
)

Implementation

static Future<String> setFlyyUserWithSegment(
    String externalUserId, String segmentId) async {
  final String result = await _channel.invokeMethod(
      FLYY_SET_USER_WITH_SEGMENT,
      {"ext-uid": externalUserId, "segment_id": segmentId});
  return result;
}