copyWith method

TransferDevice copyWith({
  1. String? ipAddress,
  2. String? userAgent,
})

Implementation

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