Initial commit

This commit is contained in:
2026-01-11 19:49:43 +09:00
commit 9cf16ce279
140 changed files with 7562 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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;
}