initial commit to gitea
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import '../models/category_products.dart';
|
||||
|
||||
import '../models/business.dart';
|
||||
import '../models/comment.dart';
|
||||
@@ -120,4 +121,24 @@ class GetCurrentPositionSuccess {
|
||||
class GetCurrentPositionFailed {
|
||||
Exception exception;
|
||||
GetCurrentPositionFailed(this.exception);
|
||||
}
|
||||
|
||||
class ShopPageScrollUpdated {
|
||||
double offset;
|
||||
ShopPageScrollUpdated(this.offset);
|
||||
}
|
||||
|
||||
class GetCategoryProducts {
|
||||
dynamic data;
|
||||
GetCategoryProducts(this.data);
|
||||
}
|
||||
|
||||
class MoreCategoryProducts {
|
||||
List<CategoryProducts> data;
|
||||
MoreCategoryProducts(this.data);
|
||||
}
|
||||
|
||||
class CategoryChangeEvent {
|
||||
int categoryId;
|
||||
CategoryChangeEvent(this.categoryId);
|
||||
}
|
||||
Reference in New Issue
Block a user