Skip to content

Instantly share code, notes, and snippets.

View kzawadi's full-sized avatar
🏠
Working from home

Kelvin Zawadi kzawadi

🏠
Working from home
View GitHub Profile
class Product {
String? _code;
Product? _product;
int? _status;
String? _statusVerbose;
Product({String? code, Product? product, int? status, String? statusVerbose}) {
if (code != null) {
this._code = code;
}