get static method
key
— A string key
Get the value of key
. If the key does not exist null
is returned.
Implementation
static dynamic get(String key) {
if (enabled == false) return;
//print('THREE.Cache Checking key: $key');
return files[key];
}