MockServer constructor

MockServer({
  1. int port = 8080,
  2. List<EndPoint> endPoints = const <EndPoint>[],
  3. int endPointDelay = 0,
})

Implementation

MockServer({
  this.port = 8080,
  this.endPoints = const <EndPoint>[],
  this.endPointDelay = 0,
});