materializedPathList property
Implementation
List<String> get materializedPathList {
if (materializedPath == null || materializedPath!.isEmpty) {
throw ArgumentError(
'materializedPath cannot be null or empty. code: $code',
);
}
return materializedPath!.split('.');
}