id method

Insert id(
  1. String id
)

Id is the auto-generated primary key that is set by the database. Adapter will request the database to return this column on inserts.

Implementation

Insert id(String id) {
  _id = id;
  return this;
}