User constructor
const
User({})
Implementation
const User({
required Session session,
required String id,
required String name,
List<String>? email,
List<String>? phone,
String? availabilityText,
String? locale,
String? photoUrl,
String? role,
Map<String, String?>? custom,
String? welcomeMessage,
}) : _session = session,
_idOnly = false,
super(
id: id,
name: name,
email: email,
phone: phone,
availabilityText: availabilityText,
locale: locale,
photoUrl: photoUrl,
role: role,
custom: custom,
welcomeMessage: welcomeMessage,
);