Server constructor

Server({
  1. required String key,
  2. int timeout = 55,
  3. bool isFull = false,
  4. dynamic onFinishDownload(
    1. bool
    )?,
  5. Map<String, String>? header,
})

base class for making http requestServer

Implementation

Server(
    {required this.key,
    this.timeout = 55,
    this.isFull = false,
    this.onFinishDownload,
    this.header});