loginByWechat static method

Future<AuthResult> loginByWechat(
  1. String connId,
  2. String code
)

login by wechat auth code

Implementation

static Future<AuthResult> loginByWechat(String connId, String code) async {
  return socialLogin("wechatMobile", connId, code);
}