SlideCaptchaModel constructor

SlideCaptchaModel({
  1. String? captchaId,
  2. String? captchaKey,
  3. int? displayX,
  4. int? displayY,
  5. int? masterHeight,
  6. Uint8List? masterImageBase64,
  7. int? masterWidth,
  8. int? thumbHeight,
  9. Uint8List? thumbImageBase64,
  10. int? thumbSize,
  11. int? thumbWidth,
})

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;
}