6 lines
100 B
Dart
6 lines
100 B
Dart
|
|
class Custom{
|
||
|
|
String id;
|
||
|
|
String productType;
|
||
|
|
int fee;
|
||
|
|
Custom({this.productType,this.fee});
|
||
|
|
}
|