BrowserTab constructor

BrowserTab({
  1. required int id,
  2. required String title,
  3. required GLTabKind kind,
  4. bool dirty = false,
  5. bool pinned = false,
})

Implementation

BrowserTab({
  required this.id,
  required this.title,
  required this.kind,
  this.dirty = false,
  this.pinned = false,
});