dateStr property
String
get
dateStr
Implementation
String get dateStr {
try {
String fileName = path.split("/").last;
return fileName.split("_").last.split(".").first;
} catch (e) {
log("$e");
return e.toString();
}
}