setFlyyNewUserWithSegment static method

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

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;
}