Context constructor

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

Implementation

Context({
  this.userId,
  this.sessionId,
  this.remoteAddress,
  this.properties,
});