Skip to content

Instantly share code, notes, and snippets.

@Abhishek9634
Created July 30, 2020 18:21
Show Gist options
  • Save Abhishek9634/586eb4232a270307781abe802320d65f to your computer and use it in GitHub Desktop.
Save Abhishek9634/586eb4232a270307781abe802320d65f to your computer and use it in GitHub Desktop.
class BottomStackItem {
var title: String
var image: String
var isSelected: Bool
init(title: String,
image: String,
isSelected: Bool = false) {
self.title = title
self.image = image
self.isSelected = isSelected
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment