alias method Null safety
Alias associates two users for analytics purposes.
This can be helpful in the situation where a person is represented by multiple LaunchDarkly users.
Implementation
static Future<void> alias(LDUser user, LDUser previousUser) async {
await _channel.invokeMethod('alias', {'user': user._toCodecValue(), 'previousUser': previousUser._toCodecValue()});
}