12 lines
383 B
Dart
12 lines
383 B
Dart
|
import 'package:pmu_labs/data/dtos/bosses_dto.dart';
|
||
|
import 'package:pmu_labs/domain/models/card.dart';
|
||
|
|
||
|
extension BossDataDtoToModel on BossAttributesDataDto {
|
||
|
CardData toDomain() => CardData(
|
||
|
title ?? 'UNKNOWN',
|
||
|
descriptionText: 'Открыть', //attributes?.description,
|
||
|
gameDesc: description,//attributes?.drop,
|
||
|
imageUrl: imageUrl,
|
||
|
);
|
||
|
}
|