ContactsView.arguments constructor

ContactsView.arguments(
  1. ContactsViewArguments arguments, {
  2. Key? key,
})

Implementation

ContactsView.arguments(
  ContactsViewArguments arguments, {
  super.key,
})  : itemBuilder = arguments.itemBuilder,
      onSearchTap = arguments.onSearchTap,
      searchHideText = arguments.searchHideText,
      listViewBackground = arguments.listViewBackground,
      onTap = arguments.onTap,
      onLongPress = arguments.onLongPress,
      appBarModel = arguments.appBarModel,
      controller = arguments.controller,
      enableAppBar = arguments.enableAppBar,
      beforeItems = arguments.beforeItems,
      afterItems = arguments.afterItems,
      loadErrorMessage = arguments.loadErrorMessage,
      enableSearchBar = arguments.enableSearchBar,
      viewObserver = arguments.viewObserver,
      specialAlphabeticalLetter = arguments.universalAlphabetical,
      sortAlphabetical = arguments.sortAlphabetical,
      onSelectLetterChanged = arguments.onSelectLetterChanged,
      enableSorting = arguments.enableSorting,
      showAlphabeticalIndicator = arguments.showAlphabeticalIndicator,
      attributes = arguments.attributes;