@@ -306,20 +306,20 @@ class Rokt {
306306 static const MethodChannel _channel =
307307 const MethodChannel ('mparticle_flutter_sdk' );
308308
309- /// Selects placements with a [placementId ] , optional [attributes] , optional [roktConfig] , and optional [fontFilePathMap] .
309+ /// Selects placements with a [identifier ] , optional [attributes] , optional [roktConfig] , and optional [fontFilePathMap] .
310310 ///
311311 /// This method calls the Rokt selectPlacements API on each platform:
312312 /// - Web: mParticle.Rokt.selectPlacements()
313313 /// - Android: MParticle.getInstance()?.Rokt().selectPlacements()
314314 /// - iOS: MParticle.sharedInstance().rokt.selectPlacements()
315315 Future <void > selectPlacements ({
316- required String placementId ,
316+ required String identifier ,
317317 Map <String , dynamic >? attributes,
318318 RoktConfig ? roktConfig,
319319 Map <String , String >? fontFilePathMap,
320320 }) async {
321321 var params = {
322- 'placementId' : placementId ,
322+ 'placementId' : identifier ,
323323 'attributes' : attributes,
324324 'config' : _roktConfigToMap (config: roktConfig),
325325 'fontFilePathMap' : fontFilePathMap,
0 commit comments