Skip to content

Instantly share code, notes, and snippets.

@tanhsnkt1997
tanhsnkt1997 / readme.md
Last active February 23, 2023 17:11
resonating-bulb-1971

resonating-bulb-1971

Created with <3 with dartpad.dev.

@tanhsnkt1997
tanhsnkt1997 / main.dart
Last active February 24, 2023 17:44
Class
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;