ViewOrderConfig constructor

const ViewOrderConfig({
  1. EmojiPickerItem top = EmojiPickerItem.categoryBar,
  2. EmojiPickerItem middle = EmojiPickerItem.emojiView,
  3. EmojiPickerItem bottom = EmojiPickerItem.searchBar,
})

Constructor

Implementation

const ViewOrderConfig({
  this.top = EmojiPickerItem.categoryBar,
  this.middle = EmojiPickerItem.emojiView,
  this.bottom = EmojiPickerItem.searchBar,
}) : assert(!identical(top, middle) &&
          !identical(top, bottom) &&
          !identical(middle, bottom));