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