getLastInsertRowId method

Future<int> getLastInsertRowId()

Returns the row id of the last inserted row.

Implementation

Future<int> getLastInsertRowId() async {
  return await _sendCommand("getLastInsertRowId");
}