We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6208944 + 2874d50 commit ec465e1Copy full SHA for ec465e1
lib/hits/segment.dart
@@ -10,11 +10,11 @@ class Segment extends BaseHit {
10
@override
11
Map<String, Object> get bodyTrack {
12
var customBody = new Map<String, Object>();
13
-// Convert persona values to String
+ // Convert persona values to String
14
Map<String, String> personaString =
15
persona.map((key, value) => MapEntry(key, value.toString()));
16
customBody.addAll({"s": personaString, "t": typeOfEvent});
17
- // Add commun body
+ // Add common body
18
customBody.addAll(super.communBodyTrack);
19
return customBody;
20
}
0 commit comments