ContactsScreen constructor

const ContactsScreen({
  1. Key? key,
  2. ValueChanged<List<AtContact?>>? selectedList,
  3. BuildContext? context,
  4. bool asSelectionScreen = false,
  5. bool asSingleSelectionScreen = false,
  6. Function? saveGroup,
  7. Function? onSendIconPressed,
})

Implementation

const ContactsScreen(
    {Key? key,
    this.selectedList,
    this.context,
    this.asSelectionScreen = false,
    this.asSingleSelectionScreen = false,
    this.saveGroup,
    this.onSendIconPressed})
    : super(key: key);