copyWith method

RequestQrCodeAuthentication copyWith({
  1. List<int>? otherUserIds,
})

Implementation

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