pathOnChoice property

Path pathOnChoice

Implementation

Path get pathOnChoice {
  // Resolve any relative paths to global ones as we come across them
  if (_pathOnChoice != null && _pathOnChoice!.isRelative) {
    var choiceTargetObj = choiceTarget;
    if (choiceTargetObj != null) {
      _pathOnChoice = choiceTargetObj.path;
    }
  }
  return _pathOnChoice!;
}
void pathOnChoice=(Path v)

Implementation

set pathOnChoice(Path v) => _pathOnChoice = v;