auth method

Future<void> auth({
  1. required List<String> scope,
  2. String? state,
  3. int type = WechatAuthType.kNormal,
})

授权登录

Implementation

Future<void> auth({
  required List<String> scope,
  String? state,
  int type = WechatAuthType.kNormal,
}) {
  throw UnimplementedError(
      'auth({required scope, state, type}) has not been implemented.');
}