All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy