File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11import 'dart:io' ;
22import 'package:flagship/cache/interface_cache.dart' ;
33import 'package:flagship/flagship.dart' ;
4+ import 'package:flagship/flagshipContext/flagship_context.dart' ;
45import 'package:flagship/flagship_config.dart' ;
56import 'package:flagship/hits/event.dart' ;
67import 'package:flagship/hits/item.dart' ;
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ enum FlagshipContext {
5959 APP_VERSION_CODE , // = "sdk_versionCode"
6060
6161 /// Version FlagShip
62+ @Deprecated ('Use .FS_VERSION' )
6263 FLAGSHIP_VERSION , // = "sdk_fsVersion"
6364
6465 FS_VERSION , // = "fs_Version"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class Page extends BaseHit {
99 @override
1010 Map <String , Object > get bodyTrack {
1111 var customBody = new Map <String , Object >();
12- customBody.addAll ({"t" : typeOfEvent /*, "dl": super.location ?? ""*/ });
12+ customBody.addAll ({"t" : typeOfEvent});
1313 // Add commun body
1414 customBody.addAll (super .communBodyTrack);
1515 return customBody;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class Screen extends BaseHit {
99 @override
1010 Map <String , Object > get bodyTrack {
1111 var customBody = new Map <String , Object >();
12- customBody.addAll ({"t" : typeOfEvent /*, "dl": super.location ?? ""*/ });
12+ customBody.addAll ({"t" : typeOfEvent});
1313 // Add commun body
1414 customBody.addAll (super .communBodyTrack);
1515 return customBody;
You can’t perform that action at this time.
0 commit comments