copyWith method

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

Implementation

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