configVerifyCode static method

void configVerifyCode(
  1. VerifyCodeConfig config
)

配置验证码

config 配置

Implementation

static void configVerifyCode(VerifyCodeConfig config) {
  if (_eventChannelReadied != true) {
    _eventChannel.receiveBroadcastStream().listen(_handleVerifyOnEvent);
    _eventChannelReadied = true;
  }
  _channel.invokeMethod("configVerifyCode", config.toJson());
}