Files
yommi_ff/lib/models/stream_entry.dart
2026-01-11 19:49:43 +09:00

21 lines
484 B
Dart

class StreamEntry {
final String title;
final String url;
StreamEntry({required this.title, required this.url});
@override
String toString() => 'StreamEntry(title: $title, url: $url)';
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is StreamEntry &&
runtimeType == other.runtimeType &&
title == other.title &&
url == other.url;
@override
int get hashCode => title.hashCode ^ url.hashCode;
}