TabModel constructor
TabModel(})
Implementation
TabModel(super.parent, super.id, {bool scoped = false, dynamic data, dynamic url, dynamic icon, String? dependency, String? title, bool? closeable, String? tooltip})
: super(scope: scoped ? Scope(parent: parent?.scope) : null) {
this.data = data;
this.url = url;
this.title = title;
this.closeable = closeable;
this.tooltip = tooltip;
this.icon = icon;
this.dependency = dependency;
}