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