FieldReflection<O, T> constructor

FieldReflection<O, T>(
  1. ClassReflection<O> classReflection,
  2. Type declaringType,
  3. TypeReflection type,
  4. String name,
  5. bool nullable,
  6. FieldReflectionGetterAccessor<O, T> getterAccessor,
  7. FieldReflectionSetterAccessor<O, T>? setterAccessor,
  8. O? object,
  9. bool isFinal, [
  10. List<Object>? annotations,
])

Implementation

FieldReflection(
    super.classReflection,
    super.declaringType,
    super.type,
    super.name,
    super.nullable,
    this.getterAccessor,
    this.setterAccessor,
    this.object,
    super.isFinal,
    [super.annotations]);