public static void ShowShare(string defaultTxt, string subject, string url, string img)
        {
            GSocialShare conf = new GSocialShare();

            conf.text    = defaultTxt;
            conf.url     = url;
            conf.image   = img;
            conf.subject = subject;

            showShare(ref conf);
        }
 [DllImport("__Internal")] private static extern void showShare(ref GSocialShare conf);