Files
elcaribe/desarrollo/source_code/lib/custom/multi_select.dart

7 lines
122 B
Dart

class SelectProduct {
SelectProduct({this.id, this.name, this.isSelect});
var id;
String? name;
bool? isSelect;
}