10 lines
318 B
Dart
10 lines
318 B
Dart
|
import 'package:first_project/data/dtos/anime_dto.dart';
|
||
|
import 'package:first_project/presentation/home_page/home_page.dart';
|
||
|
|
||
|
extension AnimeDataDtoToModel on AnimeDataDto {
|
||
|
CardData toDomain() => CardData(
|
||
|
title ?? 'NOT',
|
||
|
imageUrl: images?.jpg?.image ?? "NONE",
|
||
|
description: synopsis ?? "NONE",
|
||
|
);
|
||
|
}
|