templateParameters property

List<String> get templateParameters

List of URI template parameter keys, if the Link is templated.

Implementation

List<String> get templateParameters {
  if (!templated) {
    return [];
  } else {
    return UriTemplate(href).parameters.toList();
  }
}