createVirtual property

String? createVirtual

If this table isVirtualTable, returns the CREATE VIRTUAL TABLE statement to create this table. Otherwise returns null.

Implementation

String? get createVirtual {
  if (!isVirtualTable) return null;

  return (declaration as TableDeclarationWithSql).createSql;
}