create static method
return original data json
Implementation
static CaptchaWord create({
String? special_type,
List<int>? answer,
List<String>? words,
}) {
CaptchaWord captchaWord = CaptchaWord({
"@type": special_type,
"answer": answer,
"words": words,
});
return captchaWord;
}