_trackEvent() {
   console.log('attempting to track event');
   NativeModules.Segment.trackEvent("Opened app");
 }
 _identifyUser() {
   console.log('attempting to identify user');
   NativeModules.Segment.identifyUserWithNameAndEmail("TestUser", "TestName", "*****@*****.**");
 }