startLogin method
Start LINE login The result is obtained by a callback function.
Implementation
startLogin(Function onSuccess, Function onError) async {
_onLoginSuccess = onSuccess;
_onLoginError = onError;
await _methodChannel.invokeMethod('startLogin');
}