file property
String
get
file
Implementation
String get file {
int index = location.lastIndexOf('/');
return location.substring(index + 1, location.indexOf(":", index));
}
String get file {
int index = location.lastIndexOf('/');
return location.substring(index + 1, location.indexOf(":", index));
}