logIn method
네이버 로그인을 수행하는 메서드
Implementation
@override
Future<NaverLoginResult> logIn() async {
try {
final raw = await methodChannel.invokeMethod('logIn');
final result = Map<String, dynamic>.from(raw);
return NaverLoginResult.fromMap(result);
} on PlatformException catch (e) {
return NaverLoginResult(
status: NaverLoginStatus.error,
errorMessage: e.message,
);
}
}