LinkModel constructor
LinkModel(
- WidgetModel parent,
- String? id, {
- dynamic url,
- dynamic onclick,
- dynamic enabled,
- dynamic ondoubletap,
- dynamic hint,
- dynamic onlongpress,
Implementation
LinkModel(
super.parent,
super.id, {
dynamic url,
dynamic onclick,
dynamic enabled,
dynamic ondoubletap,
dynamic hint,
dynamic onlongpress,
}) {
this.url = url;
this.onclick = onclick;
this.enabled = enabled;
this.hint = hint;
this.onlongpress = onlongpress;
this.ondoubletap = ondoubletap;
}