When using DocumentReference.set(object), boolean fields are changed. Fields with 'is' prefix get changed to normal field value
class Invitation {
private boolean isRequested;
private boolean isValid;
private boolean isAccepted;
private String lastName,firstName;
private long sentOn;
}
And when I push this object to the database using set() method the boolean values are changed in this way:
