UnleashContext constructor

UnleashContext({
  1. String? userId,
  2. String? sessionId,
  3. String? remoteAddress,
  4. Map<String, String>? properties,
})

Implementation

UnleashContext(
    {this.userId,
    this.sessionId,
    this.remoteAddress,
    Map<String, String>? properties})
    : properties = properties ?? {};