copyWith method

RegisterDevice copyWith({
  1. DeviceToken? deviceToken,
  2. List<int>? otherUserIds,
})

Implementation

RegisterDevice copyWith({
  DeviceToken? deviceToken,
  List<int>? otherUserIds,
}) =>
    RegisterDevice(
      deviceToken: deviceToken ?? this.deviceToken,
      otherUserIds: otherUserIds ?? this.otherUserIds,
    );