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

it.auties.whatsapp.model.sync.KeyIdBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.sync;

public class KeyIdBuilder {
    private byte[] id;

    public KeyIdBuilder() {
        id = null;
    }

    public KeyIdBuilder id(byte[] id) {
        this.id = id;
        return this;
    }

    public it.auties.whatsapp.model.sync.KeyId build() {
        return new it.auties.whatsapp.model.sync.KeyId(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy