TabModel constructor

TabModel(
  1. Model? parent,
  2. String? id, {
  3. bool scoped = false,
  4. dynamic data,
  5. dynamic url,
  6. dynamic icon,
  7. String? dependency,
  8. String? title,
  9. bool? closeable,
  10. String? tooltip,
})

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;
}