ContactsScreen constructor

const ContactsScreen({
  1. Key? key,
  2. ValueChanged<List<AtContact?>>? selectedList,
  3. @Deprecated('context is no longer required and will be removed in upcoming version') BuildContext? context,
  4. bool asSelectionScreen = false,
  5. bool asSingleSelectionScreen = false,
  6. Function? saveGroup,
  7. Function? onSendIconPressed,
  8. List<AtContact>? selectedContactsHistory,
})

Implementation

const ContactsScreen(
    {Key? key,
    this.selectedList,
    @Deprecated(
        'context is no longer required and will be removed in upcoming version')
    this.context,
    this.asSelectionScreen = false,
    this.asSingleSelectionScreen = false,
    this.saveGroup,
    this.onSendIconPressed,
    this.selectedContactsHistory})
    : super(key: key);