getUser method
User
getUser(
{ - 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,
})
Implementation
User getUser({
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,
}) =>
User(
session: this,
id: id,
name: name,
email: email,
phone: phone,
availabilityText: availabilityText,
locale: locale,
photoUrl: photoUrl,
role: role,
custom: custom,
welcomeMessage: welcomeMessage,
);