table property

  1. @override
Queryable? table
override

The primary table this statement operates on. This is the part after the FROM for select and delete statements, the part after the INTO for inserts and the name after the UPDATE for updates.

Implementation

@override
Queryable? get table => from;