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