Initial commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class CommentArgument {
|
||||
final String orderId;
|
||||
|
||||
CommentArgument({required this.orderId});
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
class ImagePageArgument {
|
||||
final List<String>? images;
|
||||
final int? currentPage;
|
||||
|
||||
ImagePageArgument({this.images, this.currentPage});
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
class OrderInfoArgument{
|
||||
final String orderId;
|
||||
final String orderNumber;
|
||||
|
||||
OrderInfoArgument({required this.orderId, required this.orderNumber});
|
||||
}
|
||||
Reference in New Issue
Block a user