copyWith method

SharePhoneNumber copyWith({
  1. int? userId,
})

Implementation

SharePhoneNumber copyWith({
  int? userId,
}) => SharePhoneNumber(
  userId: userId ?? this.userId,
);