setUserProperty method
Sets a user property to the given value.
Setting a null value
removes the user property.
Implementation
@override
Future<void> setUserProperty({
required String name,
required String? value,
}) {
return _channel.invokeMethod<void>('setUserProperty', <String, String?>{
'name': name,
'value': value,
});
}