buildAllSQLs method

List<String> buildAllSQLs({
  1. bool multiline = true,
  2. bool ifNotExists = true,
})

Build all the SQLs, including the extraSQLBuilders.

Implementation

List<String> buildAllSQLs({bool multiline = true, bool ifNotExists = true}) {
  var allSQLBuilders = this.allSQLBuilders;
  var sqls = allSQLBuilders
      .map((e) => e.buildSQL(multiline: multiline, ifNotExists: ifNotExists))
      .toList();
  return sqls;
}