ConnectionInfo constructor

ConnectionInfo({
  1. String? ip,
  2. int? lastSeen,
  3. String? userAgent,
})

Implementation

ConnectionInfo({
  this.ip,
  this.lastSeen,
  this.userAgent,
});