pratikbutani / MultiSelectSpinner

Android - Select Multiple Items from Spinner with Filtration.
http://pratikbutani.github.io/MultiSelectSpinner/
GNU General Public License v3.0
253 stars 125 forks source link

Made Constructor for KeyPairBoolData #79

Closed TheRealTechWiz closed 3 years ago

TheRealTechWiz commented 3 years ago

This will reduce this code- KeyPairBoolData a= new KeyPairBoolData(); a.setName("first"); listArray1.add(a); to this code- listArray1.add(new KeyPairBoolData("first",true));

TheRealTechWiz commented 3 years ago

This will reduce this code- KeyPairBoolData a= new KeyPairBoolData(); a.setName("first"); listArray1.add(a); to this code- listArray1.add(new KeyPairBoolData("first",true));

codegsaini commented 3 years ago

There should definitely be a constructor for easy implementation