LinkValue constructor Null safety
Implementation
factory LinkValue({
$5.LinkKind? link,
$core.String? value,
}) {
final _result = create();
if (link != null) {
_result.link = link;
}
if (value != null) {
_result.value = value;
}
return _result;
}