Files
MrbWebLibre/app/lib/features/web_view/domain/entities/abstract/tab.dart
T
2024-08-21 13:36:58 +02:00

12 lines
264 B
Dart

import 'package:drift/drift.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
abstract interface class ITab {
String get id;
Uri get url;
String? get title;
String? get topicId;
Favicon? get favicon;
Uint8List? get screenshot;
}