setDescription method

RouteData setDescription(
  1. String text
)

Fluent method to set the route description.

Implementation

RouteData setDescription(String text) {
  description = text;
  return this;
}