copyWith method
- String? id,
- String? ip,
- String? userAgent,
- PreciseDateTime? lastActivatedAt,
Implementation
SessionRow copyWith({
String? id,
String? ip,
String? userAgent,
PreciseDateTime? lastActivatedAt,
}) => SessionRow(
id: id ?? this.id,
ip: ip ?? this.ip,
userAgent: userAgent ?? this.userAgent,
lastActivatedAt: lastActivatedAt ?? this.lastActivatedAt,
);