$write method
GenerationContext
$write(})
inherited
Will be used by generated code to resolve inline Dart components in sql by
writing the component.
Implementation
@protected
GenerationContext $write(
Component component, {
bool? hasMultipleTables,
int? startIndex,
}) {
final context = GenerationContext.fromDb(this)
..explicitVariableIndex = startIndex
..hasMultipleTables = hasMultipleTables ?? false;
component.writeInto(context);
return context;
}