7 lines
122 B
Dart
7 lines
122 B
Dart
class SelectProduct {
|
|
SelectProduct({this.id, this.name, this.isSelect});
|
|
var id;
|
|
String? name;
|
|
bool? isSelect;
|
|
}
|