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