it.auties.whatsapp.model.sync.AppStateSyncKeyIdBuilder Maven / Gradle / Ivy
package it.auties.whatsapp.model.sync;
public class AppStateSyncKeyIdBuilder {
private byte[] keyId;
public AppStateSyncKeyIdBuilder() {
keyId = null;
}
public AppStateSyncKeyIdBuilder keyId(byte[] keyId) {
this.keyId = keyId;
return this;
}
public it.auties.whatsapp.model.sync.AppStateSyncKeyId build() {
return new it.auties.whatsapp.model.sync.AppStateSyncKeyId(keyId);
}
}