endTransaction method

Future<void> endTransaction()

Implementation

Future<void> endTransaction() async {
  if (pool != null) {
    await (await pool.getConnection()).close();
    tools = null;
  }
}