PathEntitySelector constructor

const PathEntitySelector({
  1. Key? key,
  2. VoidCallback? togglePathEntity,
  3. required ValueListenable<AssetPathEntity?> currentPathEntity,
  4. required ValueListenable<bool> isSwitchingPath,
})

Implementation

const PathEntitySelector({
  Key? key,
  this.togglePathEntity,
  required this.currentPathEntity,
  required this.isSwitchingPath,
}) : super(key: key);