RemoteBlockSelectionsArea constructor

const RemoteBlockSelectionsArea({
  1. Key? key,
  2. required Node node,
  3. required SelectableMixin<StatefulWidget> delegate,
  4. required ValueListenable<List<RemoteSelection>> remoteSelections,
  5. List<BlockSelectionType> supportTypes = const [BlockSelectionType.cursor, BlockSelectionType.selection],
})

Implementation

const RemoteBlockSelectionsArea({
  super.key,
  required this.node,
  required this.delegate,
  required this.remoteSelections,
  this.supportTypes = const [
    BlockSelectionType.cursor,
    BlockSelectionType.selection,
  ],
});