concatUri method

Uri concatUri(
  1. String p
)

Concat a string to the main URL of the db

Implementation

Uri concatUri(String p) {
  return Uri(
      scheme: uri.scheme, host: uri.host, port: uri.port, path: uri.path + p);
}