locationPieces property
override
Pieces of the location, split to remove 'package:' and slashes.
Implementation
@override
Set<String> get locationPieces =>
_locationPieces ??= Set.from(element.location
.toString()
.split(locationSplitter)
.where((s) => s.isNotEmpty));