car_dao.dart 597 B

1234567891011121314151617181920212223242526
  1. import 'package:flutter_provider_demo/model/car_model.dart';
  2. class CarDao {
  3. /// get cars from sqlite
  4. static Future<List<CarModel>> getCars() async {
  5. return [
  6. CarModel(id: 1, brand: "大众", type: "朗逸"),
  7. CarModel(id: 2, brand: "大众", type: "帕萨特"),
  8. ];
  9. }
  10. /// add car to sqlite
  11. /// @param car
  12. /// @return
  13. /// @throws Exception
  14. static Future<int> addCar(CarModel car) async {
  15. return 0;
  16. }
  17. /// delete car from sqlite
  18. /// @param car
  19. /// @throws Exception
  20. static Future<bool> deleteCar(CarModel car) {
  21. return Future.value(true);
  22. }
  23. }