setHost method

Application setHost(
  1. dynamic host
)

setHost is a method that sets the host of server of the application. by default it's set to '0.0.0.0'.

Implementation

Application setHost(dynamic host) {
  this.host = host;
  return this;
}