15 lines
444 B
Dart
Raw Normal View History

2024-12-18 03:01:46 +04:00
import '../../domain/quote.dart';
2024-12-11 05:09:29 +04:00
import '/data/dtos/quotes_dto.dart';
2024-12-18 03:01:46 +04:00
import '/presentation/home_page/home_page.dart';
2024-12-11 05:09:29 +04:00
2024-12-18 13:10:57 +04:00
const _imagePlaceholder = 'https://cdn-icons-png.flaticon.com/128/17818/17818874.png';
2024-12-11 05:09:29 +04:00
extension QuoteDtoToModel on QuoteDataDto {
Quote toDomain() => Quote(
2024-12-18 13:10:57 +04:00
body ?? 'Без текста',
author ?? 'Неизвестный автор',
imageUrl ?? _imagePlaceholder,
id ?? "",
);
}