mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
15 lines
412 B
Dart
15 lines
412 B
Dart
part of 'metadata.dart';
|
|
|
|
@freezed
|
|
class SpotubeFeedObject with _$SpotubeFeedObject {
|
|
factory SpotubeFeedObject({
|
|
required final String uid,
|
|
required final String name,
|
|
required final String externalUrl,
|
|
@Default([]) final List<SpotubeImageObject> images,
|
|
}) = _SpotubeFeedObject;
|
|
|
|
factory SpotubeFeedObject.fromJson(Map<String, dynamic> json) =>
|
|
_$SpotubeFeedObjectFromJson(json);
|
|
}
|