path property
dynamic
get
path
Implementation
get path {
// print("GLYPH index: ${index} get path ${_path.runtimeType} ");
if(_path is Function) {
// print("_path is Function calll ");
_path = _path();
}
return _path;
}
set
path
(dynamic value)
Implementation
set path(value) {
_path = value;
// print("GLYPH index: ${index} set path ${_path.runtimeType} ");
}