close method
Close the connection
Implementation
@override
Future<void> close() async {
if (_connection != null && _isOpen) {
// Uncomment when mysql1 package is added:
// await _connection.close();
_isOpen = false;
_connection = null;
}
}