判断是否登录成功
@override Future<bool> isLogin() async { final isLogin = await methodChannel.invokeMethod<bool>('isLogin'); return isLogin ?? false; }