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