mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
14 lines
352 B
Dart
14 lines
352 B
Dart
part of 'metadata.dart';
|
|
|
|
@freezed
|
|
class SpotubeImageObject with _$SpotubeImageObject {
|
|
factory SpotubeImageObject({
|
|
required final String url,
|
|
required final int width,
|
|
required final int height,
|
|
}) = _SpotubeImageObject;
|
|
|
|
factory SpotubeImageObject.fromJson(Map<String, dynamic> json) =>
|
|
_$SpotubeImageObjectFromJson(json);
|
|
}
|