14 lines
323 B
Dart
14 lines
323 B
Dart
import 'package:matule_query/matule_query.dart';
|
|
|
|
class Storage {
|
|
final ProductModel productItem = ProductModel(
|
|
approximateCost: "",
|
|
description: "",
|
|
id: "",
|
|
price: 300,
|
|
title: "Рубашка воскресенье для машинного вязания",
|
|
type: "",
|
|
typeCloses: "",
|
|
);
|
|
}
|