DecodeInput constructor
DecodeInput({
- String? text,
Implementation
factory DecodeInput({
$core.String? text,
}) {
final $result = create();
if (text != null) {
$result.text = text;
}
return $result;
}