createInstantiatedGenericClassMirror method

InstantiatedGenericClassMirrorImpl<T> createInstantiatedGenericClassMirror(
  1. Object? instance,
  2. List<int>? reflectedTypeArgumentIndices, [
  3. int? descriptor
])

Implementation

InstantiatedGenericClassMirrorImpl<T> createInstantiatedGenericClassMirror( Object? instance, List<int>? reflectedTypeArgumentIndices, [ int? descriptor]) {
  return _createInstantiatedGenericClass<T>(
          this,
          instance.runtimeType,
          reflectedTypeArgumentIndices,
          descriptor,
        );
}