logOut static method

Implementation

static Future<NaverLoginResult> logOut() async {
  final Map<dynamic, dynamic> res = await _channel.invokeMethod('logOut');

  return _delayedToResult(
      new NaverLoginResult._(res.cast<String, dynamic>()));
}