path property

  1. @override
String path
override

Implementation

@override
String get path {
  assert(parse.configuration != null);
  String path = '${parse.configuration!.uri.path}/sessions';

  if (objectId != null) {
    path = '$path/$objectId';
  }

  return path;
}