writeMethodImpl method
void
writeMethodImpl({
- required TypeDefIndex class$,
- required MethodDefOrRef methodBody,
- required MethodDefOrRef methodDeclaration,
Writes a MethodImpl
row.
Implementation
void writeMethodImpl({
required TypeDefIndex class$,
required MethodDefOrRef methodBody,
required MethodDefOrRef methodDeclaration,
}) {
_tableStream[MetadataTableId.methodImpl].add(
MethodImpl(
class$: class$,
methodBody: methodBody,
methodDeclaration: methodDeclaration,
),
);
}