into method

  1. @override
QueryBuilder into(
  1. String? table
)
override

Implementation

@override
QueryBuilder into(String? table) {
  final block = mBlocks![1] as IntoTableBlock;
  block.setInto(table);
  return this;
}