toString method

  1. @override
String toString()
override

Returns a string representation of the WaService instance.

This method provides a default string representation indicating the type of the service. It overrides the Object.toString method to return a custom description of the service.

Returns a String representing the type of the service.

Implementation

@override
String toString() {
  return "WaService type";
}