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

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

There is a newer version: 0.0.7
Show newest version
package it.auties.whatsapp.model.sync;

public class PrimaryFeatureBuilder {
    private java.util.List flags;

    public PrimaryFeatureBuilder() {
        flags = new java.util.ArrayList();
    }

    public PrimaryFeatureBuilder flags(java.util.List flags) {
        this.flags = flags;
        return this;
    }

    public it.auties.whatsapp.model.sync.PrimaryFeature build() {
        return new it.auties.whatsapp.model.sync.PrimaryFeature(flags);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy