implement setValue method

This commit is contained in:
yggverse 2024-07-05 01:33:10 +03:00
parent 3649f21b52
commit f143640928

View file

@ -28,4 +28,17 @@ class Request extends \Yggverse\Yoda\Abstract\Entity\Window\Tab\Address\Navbar\E
)
);
}
public function setValue(
?string $value = null
): void
{
$this->gtk->set_text(
trim(
strval(
$value
)
)
);
}
}