getProfile static method

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

Implementation

static Future<LinkedInProfile> getProfile(
    {PreferredSizeWidget? appBar,
    bool destroySession = true,
    bool forceLogin = false}) async {
  _checkInst();
  return _inst._getProfile(
      destroySession: destroySession, forceLogin: forceLogin);
}