setConfig method
Future<void>
setConfig({
- required String clientId,
- String? userId,
- String? recipeId,
- String? fcmToken,
- String? userName,
- String? userEmail,
- String? userPhone,
- Map<
String, String> ? userVariables, - Map<
String, String> ? roomVariables,
override
Returns a String containing the version of the platform.
Implementation
/*@override
Future<String?> getPlatformVersion() async {
final version = html.window.navigator.userAgent;
return version;
}*/
@override
Future<void> setConfig({
required String clientId,
String? userId,
String? recipeId,
String? fcmToken,
String? userName,
String? userEmail,
String? userPhone,
Map<String, String>? userVariables,
Map<String, String>? roomVariables,
}) async {
throw UnimplementedError('setConfig() has not been implemented.');
}