10 lines
352 B
Dart
10 lines
352 B
Dart
|
import 'package:flutter_labs/data/dtos/potions_dto.dart';
|
||
|
import 'package:flutter_labs/domain/models/card.dart';
|
||
|
|
||
|
extension PotionDataDtoToModel on PotionDataDto {
|
||
|
CardData toDomain() => CardData(
|
||
|
attributes?.name ?? 'UNKNOWN',
|
||
|
imageUrl: attributes?.image,
|
||
|
descriptionText: '${attributes?.characteristics} - ${attributes?.effect}',
|
||
|
);
|
||
|
}
|