Func constructor Null safety
- {String? name,
- dynamic owner,
- bool? isStatic,
- bool? isConst,
- bool? implicit,
- bool? isAbstract,
- InstanceRef? signature,
- required String id,
- SourceLocation? location,
- CodeRef? code}
Implementation
Func({
this.name,
this.owner,
this.isStatic,
this.isConst,
this.implicit,
this.isAbstract,
this.signature,
required String id,
this.location,
this.code,
}) : super(
id: id,
);