public static MixPanelClient GetInstance(string Token, MixPanelOSType OSType)
 {
     if (_Instance == null)
     {
         _Instance = new MixPanelClient(Token, OSType);
     }
     return(_Instance);
 }
 public void Dispose()
 {
     _Instance = null;
 }