copyWith method
Implementation
BrowserTab copyWith({int? id, String? title, GLTabKind? kind, bool? dirty, bool? pinned}) =>
BrowserTab(
id: id ?? this.id,
title: title ?? this.title,
kind: kind ?? this.kind,
dirty: dirty ?? this.dirty,
pinned: pinned ?? this.pinned,
);