Field constructor
- String? name,
- ObjRef? owner,
- InstanceRef? declaredType,
- bool? isConst,
- bool? isFinal,
- bool? isStatic,
- required String id,
- SourceLocation? location,
- dynamic staticValue,
Implementation
Field({
this.name,
this.owner,
this.declaredType,
this.isConst,
this.isFinal,
this.isStatic,
required String id,
this.location,
this.staticValue,
}) : super(
id: id,
);