aman-kassa-flutter/lib/core/models/ProductDao.dart

9 lines
131 B
Dart

class ProductDao {
final String name;
final double price;
int count;
ProductDao( {this.name, this.price, this.count});
}