authorize method

void authorize({
  1. required WeChatAuthEntry authEntry,
  2. required AuthorizeCall authorizeCall,
})

Implementation

void authorize({required WeChatAuthEntry authEntry, required AuthorizeCall authorizeCall}) {
  var arguments = authEntry.toMap();
  arguments["authType"] = AuthType.weChat.name;
  super.auth(arguments: arguments, authorizeCall: authorizeCall);
}