generate method
void
generate({})
Generates respective code for each SteamParam
Implementation
void generate({
required IOSink fileSink,
bool withDart = false,
bool withFunctionDart = false,
bool withFunctionC = false,
bool withName = false,
bool withCaller = false,
}) {
for (SteamParam param in this) {
param.generate(
fileSink: fileSink,
withDart: withDart,
withFunctionDart: withFunctionDart,
withFunctionC: withFunctionC,
withName: withName,
withCaller: withCaller,
);
}
}