|
|
|
@ -43,7 +43,9 @@ class AlbumResponseDto {
|
|
|
|
List<AssetResponseDto> assets;
|
|
|
|
List<AssetResponseDto> assets;
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
bool operator ==(Object other) => identical(this, other) || other is AlbumResponseDto &&
|
|
|
|
bool operator ==(Object other) =>
|
|
|
|
|
|
|
|
identical(this, other) ||
|
|
|
|
|
|
|
|
other is AlbumResponseDto &&
|
|
|
|
other.assetCount == assetCount &&
|
|
|
|
other.assetCount == assetCount &&
|
|
|
|
other.id == id &&
|
|
|
|
other.id == id &&
|
|
|
|
other.ownerId == ownerId &&
|
|
|
|
other.ownerId == ownerId &&
|
|
|
|
@ -68,7 +70,8 @@ class AlbumResponseDto {
|
|
|
|
(assets.hashCode);
|
|
|
|
(assets.hashCode);
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
String toString() => 'AlbumResponseDto[assetCount=$assetCount, id=$id, ownerId=$ownerId, albumName=$albumName, createdAt=$createdAt, albumThumbnailAssetId=$albumThumbnailAssetId, shared=$shared, sharedUsers=$sharedUsers, assets=$assets]';
|
|
|
|
String toString() =>
|
|
|
|
|
|
|
|
'AlbumResponseDto[assetCount=$assetCount, id=$id, ownerId=$ownerId, albumName=$albumName, createdAt=$createdAt, albumThumbnailAssetId=$albumThumbnailAssetId, shared=$shared, sharedUsers=$sharedUsers, assets=$assets]';
|
|
|
|
|
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
Map<String, dynamic> toJson() {
|
|
|
|
final json = <String, dynamic>{};
|
|
|
|
final json = <String, dynamic>{};
|
|
|
|
@ -98,13 +101,13 @@ class AlbumResponseDto {
|
|
|
|
// Ensure that the map contains the required keys.
|
|
|
|
// Ensure that the map contains the required keys.
|
|
|
|
// Note 1: the values aren't checked for validity beyond being non-null.
|
|
|
|
// Note 1: the values aren't checked for validity beyond being non-null.
|
|
|
|
// Note 2: this code is stripped in release mode!
|
|
|
|
// Note 2: this code is stripped in release mode!
|
|
|
|
assert(() {
|
|
|
|
// assert(() {
|
|
|
|
requiredKeys.forEach((key) {
|
|
|
|
// requiredKeys.forEach((key) {
|
|
|
|
assert(json.containsKey(key), 'Required key "AlbumResponseDto[$key]" is missing from JSON.');
|
|
|
|
// assert(json.containsKey(key), 'Required key "AlbumResponseDto[$key]" is missing from JSON.');
|
|
|
|
assert(json[key] != null, 'Required key "AlbumResponseDto[$key]" has a null value in JSON.');
|
|
|
|
// assert(json[key] != null, 'Required key "AlbumResponseDto[$key]" has a null value in JSON.');
|
|
|
|
});
|
|
|
|
// });
|
|
|
|
return true;
|
|
|
|
// return true;
|
|
|
|
}());
|
|
|
|
// }());
|
|
|
|
|
|
|
|
|
|
|
|
return AlbumResponseDto(
|
|
|
|
return AlbumResponseDto(
|
|
|
|
assetCount: mapValueOfType<int>(json, r'assetCount')!,
|
|
|
|
assetCount: mapValueOfType<int>(json, r'assetCount')!,
|
|
|
|
@ -112,7 +115,8 @@ class AlbumResponseDto {
|
|
|
|
ownerId: mapValueOfType<String>(json, r'ownerId')!,
|
|
|
|
ownerId: mapValueOfType<String>(json, r'ownerId')!,
|
|
|
|
albumName: mapValueOfType<String>(json, r'albumName')!,
|
|
|
|
albumName: mapValueOfType<String>(json, r'albumName')!,
|
|
|
|
createdAt: mapValueOfType<String>(json, r'createdAt')!,
|
|
|
|
createdAt: mapValueOfType<String>(json, r'createdAt')!,
|
|
|
|
albumThumbnailAssetId: mapValueOfType<String>(json, r'albumThumbnailAssetId'),
|
|
|
|
albumThumbnailAssetId:
|
|
|
|
|
|
|
|
mapValueOfType<String>(json, r'albumThumbnailAssetId'),
|
|
|
|
shared: mapValueOfType<bool>(json, r'shared')!,
|
|
|
|
shared: mapValueOfType<bool>(json, r'shared')!,
|
|
|
|
sharedUsers: UserResponseDto.listFromJson(json[r'sharedUsers'])!,
|
|
|
|
sharedUsers: UserResponseDto.listFromJson(json[r'sharedUsers'])!,
|
|
|
|
assets: AssetResponseDto.listFromJson(json[r'assets'])!,
|
|
|
|
assets: AssetResponseDto.listFromJson(json[r'assets'])!,
|
|
|
|
@ -121,7 +125,10 @@ class AlbumResponseDto {
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static List<AlbumResponseDto>? listFromJson(dynamic json, {bool growable = false,}) {
|
|
|
|
static List<AlbumResponseDto>? listFromJson(
|
|
|
|
|
|
|
|
dynamic json, {
|
|
|
|
|
|
|
|
bool growable = false,
|
|
|
|
|
|
|
|
}) {
|
|
|
|
final result = <AlbumResponseDto>[];
|
|
|
|
final result = <AlbumResponseDto>[];
|
|
|
|
if (json is List && json.isNotEmpty) {
|
|
|
|
if (json is List && json.isNotEmpty) {
|
|
|
|
for (final row in json) {
|
|
|
|
for (final row in json) {
|
|
|
|
@ -149,12 +156,18 @@ class AlbumResponseDto {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// maps a json object with a list of AlbumResponseDto-objects as value to a dart map
|
|
|
|
// maps a json object with a list of AlbumResponseDto-objects as value to a dart map
|
|
|
|
static Map<String, List<AlbumResponseDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
|
|
|
static Map<String, List<AlbumResponseDto>> mapListFromJson(
|
|
|
|
|
|
|
|
dynamic json, {
|
|
|
|
|
|
|
|
bool growable = false,
|
|
|
|
|
|
|
|
}) {
|
|
|
|
final map = <String, List<AlbumResponseDto>>{};
|
|
|
|
final map = <String, List<AlbumResponseDto>>{};
|
|
|
|
if (json is Map && json.isNotEmpty) {
|
|
|
|
if (json is Map && json.isNotEmpty) {
|
|
|
|
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
|
|
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
|
|
for (final entry in json.entries) {
|
|
|
|
for (final entry in json.entries) {
|
|
|
|
final value = AlbumResponseDto.listFromJson(entry.value, growable: growable,);
|
|
|
|
final value = AlbumResponseDto.listFromJson(
|
|
|
|
|
|
|
|
entry.value,
|
|
|
|
|
|
|
|
growable: growable,
|
|
|
|
|
|
|
|
);
|
|
|
|
if (value != null) {
|
|
|
|
if (value != null) {
|
|
|
|
map[entry.key] = value;
|
|
|
|
map[entry.key] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -176,4 +189,3 @@ class AlbumResponseDto {
|
|
|
|
'assets',
|
|
|
|
'assets',
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|