toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['captchaId'] = _captchaId;
map['captchaKey'] = _captchaKey;
map['displayX'] = _displayX;
map['displayY'] = _displayY;
map['masterHeight'] = _masterHeight;
map['masterImageBase64'] = _masterImageBase64;
map['masterWidth'] = _masterWidth;
map['thumbHeight'] = _thumbHeight;
map['thumbImageBase64'] = _thumbImageBase64;
map['thumbSize'] = _thumbSize;
map['thumbWidth'] = _thumbWidth;
return map;
}