Files
elcaribe/source_code/lib/custom/multi_select.dart
2023-08-07 15:52:04 -04:00

7 lines
122 B
Dart

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