forInstance static method
Implementation
static ResolvableType forInstance(Object? instance) {
if (instance == null) return NONE;
return forClass(instance.runtimeType);
}
static ResolvableType forInstance(Object? instance) {
if (instance == null) return NONE;
return forClass(instance.runtimeType);
}