getPath property
String
get
getPath
Implementation
String get getPath {
if (rootPath == null) {
return fileName.contains(EzWidgetConfig.rootSvgPath) ? fileName : EzWidgetConfig.rootSvgPath + fileName;
} else {
return fileName.contains(rootPath!) ? fileName : rootPath! + fileName;
}
}