Hyperlink.add constructor
Hyperlink.add(
- String address, [
- String? screenTip,
- String? textToDisplay,
- HyperlinkType? type,
Creates an instance of Hyperlink with parameters.
Implementation
Hyperlink.add(this.address,
[this.screenTip, this.textToDisplay, HyperlinkType? type]) {
if (type != null) {
this.type = type;
} else {
type = HyperlinkType.url;
}
}