user_dao.dart 260 B

1234567891011
  1. import 'package:flutter_google_map/models/user_model.dart';
  2. class UserDao {
  3. Future<UserModel> login(String username, String pwd) async {
  4. // Get user from database
  5. return UserModel.fromJson({
  6. "name": "liuyuqi",
  7. "userId": 1,
  8. });
  9. }
  10. }