User constructor
const
User({})
Creates a new User instance
Implementation
const User({
required this.id,
required this.email,
this.name,
this.roles = const ['user'],
this.emailVerified = false,
this.createdAt,
this.updatedAt,
this.metadata,
});