onExposure method
Implementation
void onExposure(List<FSExposedInfo> exposureInfos) {
exposureInfos.forEach((item) {
Flagship.sharedInstance()
.getConfiguration()
?.onVisitorExposed
?.call(item.visitorExposed, item.exposedFlag);
});
}