getConnectionObject method

Future<MySqlConnection?> getConnectionObject()
override

Implementation

Future<MySqlConnection?> getConnectionObject() async {
  try {
    return mySqlConnection;
  } catch (ex, stack) {
    Simplify.getExceptionMessage(ex, stack: stack);
    return null;
  }
}