Created with <3 with dartpad.dev.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Product { | |
//Khai báo các thuộc tính | |
String manufacture = ''; | |
String name = ''; | |
var price; | |
int quantity = 100; | |
//Khai báo hàm khởi tạo | |
Product(var price, int quantity) { | |
this.price = price; |