NiceSocialUserState constructor

const NiceSocialUserState({
  1. bool liked = false,
  2. bool shared = false,
  3. bool bookmarked = false,
})

Implementation

const NiceSocialUserState({
  this.liked = false,
  this.shared = false,
  this.bookmarked = false,
});