close method
Close the connection to the repository. If this is the last connection to the repository it will return true and the repository is trully closed. If there are still open connections it will return false;
Implementation
@override
Future<bool> close() async {
return true;
}