10 lines
304 B
Dart
10 lines
304 B
Dart
|
import 'package:pmu/data/dtos/news_dto.dart';
|
||
|
import 'package:pmu/domain/models/card.dart';
|
||
|
|
||
|
extension NewDataDtoToModel on NewDataDto{
|
||
|
CardData toDomain() => CardData(
|
||
|
text: attributes?.title ?? 'UNKNOWN',
|
||
|
imageUrl: attributes?.imagelink,
|
||
|
descText: attributes?.summary ?? 'NOTHING',
|
||
|
);
|
||
|
}
|