logIn static method

Implementation

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

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