mirror of
https://github.com/stonega/tsacdop
synced 2025-02-03 08:57:33 +01:00
d4ebdf769d
modified: lib/home/appbar/addpodcast.dart modified: lib/home/appbar/popupmenu.dart modified: lib/home/homescroll.dart modified: lib/local_storage/sqflite_localpodcast.dart modified: lib/main.dart modified: lib/podcasts/podcastdetail.dart modified: lib/podcasts/podcastgroup.dart modified: lib/util/episodegrid.dart modified: pubspec.lock modified: pubspec.yaml Improved UI of podcast page.
25 lines
492 B
Dart
25 lines
492 B
Dart
class PodcastLocal {
|
|
final String title;
|
|
final String imageUrl;
|
|
final String rssUrl;
|
|
final String author;
|
|
String description;
|
|
final String primaryColor;
|
|
final String id;
|
|
final String imagePath;
|
|
final String email;
|
|
final String provider;
|
|
final String link;
|
|
PodcastLocal(
|
|
this.title,
|
|
this.imageUrl,
|
|
this.rssUrl,
|
|
this.primaryColor,
|
|
this.author,
|
|
this.id,
|
|
this.imagePath,
|
|
this.email,
|
|
this.provider,
|
|
this.link);
|
|
}
|