import 'user.dart';
class UserPreferences{
static const myUser = User(
//imagePath: "https://cdn.dribbble.com/users/747805/screenshots/2799703/dog.jpg",
firstName: 'First Name',
lastName: 'Last Name',
dogName: "Dog's Name",
address: 'Address',
hasTrait1: "Trait 1",
hasTrait2: "Trait 2",
hasTrait3: "Trait 3"
);
}