mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
322 B
15 lines
322 B
2 months ago
|
import 'package:compass_app/data/services/api/model/user/user_api_model.dart';
|
||
|
import 'package:compass_app/domain/models/user/user.dart';
|
||
|
|
||
|
const userApiModel = UserApiModel(
|
||
|
id: 'ID',
|
||
|
name: 'NAME',
|
||
|
email: 'EMAIL',
|
||
|
picture: 'assets/user.jpg',
|
||
|
);
|
||
|
|
||
|
const user = User(
|
||
|
name: 'NAME',
|
||
|
picture: 'assets/user.jpg',
|
||
|
);
|