2024-10-08 11:53:40 +04:00
|
|
|
|
|
|
|
import 'package:labs_petrushin/Presentation/home_page/home_page.dart';
|
2024-10-18 19:20:31 +04:00
|
|
|
import 'package:labs_petrushin/data/dtos/breads_dto.dart';
|
2024-10-08 11:53:40 +04:00
|
|
|
|
|
|
|
extension CharacterDataDtoToModel on BreadDataDto {
|
|
|
|
CardData toDomain() => CardData(
|
2024-10-18 19:20:31 +04:00
|
|
|
text: brandName ?? "Просто хлэп",
|
|
|
|
info: description ?? "Очень кусьна",
|
|
|
|
urlImage: image);
|
2024-10-08 11:53:40 +04:00
|
|
|
}
|