getEmail static method

Future<LinkedInEmail> getEmail({
  1. PreferredSizeWidget? appBar,
  2. bool destroySession = true,
  3. bool forceLogin = false,
})

Implementation

static Future<LinkedInEmail> getEmail(
    {PreferredSizeWidget? appBar,
    bool destroySession = true,
    bool forceLogin = false}) {
  _checkInst();
  return _inst._getEmail(
      destroySession: destroySession, forceLogin: forceLogin);
}