setFromRaw method

void setFromRaw(
  1. String fromRawSqlString
)

Implementation

void setFromRaw(String fromRawSqlString) {
  //fromRawSQL = fromRawSqlString;
  mTables ??= [];
  mTables!.add(TableNode(null, null, fromRawSql: fromRawSqlString));
}