SlideCaptchaModel constructor
SlideCaptchaModel({})
Implementation
SlideCaptchaModel({
String? captchaId,
String? captchaKey,
int? displayX,
int? displayY,
int? masterHeight,
Uint8List? masterImageBase64,
int? masterWidth,
int? thumbHeight,
Uint8List? thumbImageBase64,
int? thumbSize,
int? thumbWidth,
}) {
_captchaId = captchaId;
_captchaKey = captchaKey;
_displayX = displayX;
_displayY = displayY;
_masterHeight = masterHeight;
_masterImageBase64 = masterImageBase64;
_masterWidth = masterWidth;
_thumbHeight = thumbHeight;
_thumbImageBase64 = thumbImageBase64;
_thumbSize = thumbSize;
_thumbWidth = thumbWidth;
}