generate method
Generates respective code for calling lookup function code for each SteamMethod
Implementation
void generate({
required IOSink fileSink,
required String owner,
bool isStatic = false,
}) {
for (SteamMethod steamMethod in this.where((sm) => sm._shouldCreate())) {
steamMethod.generate(
fileSink: fileSink,
owner: owner,
isStatic: isStatic,
);
}
}