12 lines
426 B
Dart
12 lines
426 B
Dart
|
import 'package:flutter_app/data/dtos/mangas_dto.dart';
|
||
|
import 'package:flutter_app/domain/models/carddata.dart';
|
||
|
|
||
|
extension MangaDataDtoMapper on MangaDataDto {
|
||
|
CardData toDomain() => CardData(
|
||
|
title ?? 'UNKNOWN',
|
||
|
imageUrl: images?.jpg?.image_url,
|
||
|
descriptionText:
|
||
|
'Статус: ${status}. Рейтинг: ${score}. Людей поставило оценку: ${scored_by}',
|
||
|
);
|
||
|
}
|