copyWith method
Implementation
SignalDevice copyWith({String? ipAddress, String? userAgent}) {
return SignalDevice(
ipAddress: ipAddress ?? this.ipAddress,
userAgent: userAgent ?? this.userAgent);
}
SignalDevice copyWith({String? ipAddress, String? userAgent}) {
return SignalDevice(
ipAddress: ipAddress ?? this.ipAddress,
userAgent: userAgent ?? this.userAgent);
}