dirNames property

List<String> dirNames

split the dirname input into list of parts

Implementation

List<String> get dirNames =>
    dirName != null ? [...dirName!.split(RegExp(r"(\\|\/)"))] : [];