sync initial
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import 'package:fast_equatable/fast_equatable.dart';
|
||||
import 'package:flutter_mozilla_components/flutter_mozilla_components.dart';
|
||||
|
||||
class SyncedTabItem with FastEquatable {
|
||||
final String deviceId;
|
||||
final String deviceName;
|
||||
final SyncRemoteTab tab;
|
||||
|
||||
SyncedTabItem({
|
||||
required this.deviceId,
|
||||
required this.deviceName,
|
||||
required this.tab,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get hashParameters => [deviceId, deviceName, tab];
|
||||
}
|
||||
Reference in New Issue
Block a user