InstanceReflection constructor

InstanceReflection(
  1. Object instance
)

Implementation

InstanceReflection(this.instance) {
  typeMirror = reflectType(instance.runtimeType);
  classMirror = reflectClass(instance.runtimeType);
  instanceMirror = reflect(instance);
}