TransmissionScope constructor

const TransmissionScope({
  1. Key? key,
  2. String? baseUrl,
  3. String? proxyUrl,
  4. required Widget child,
  5. bool enableLog = false,
})

baseUrl string URL of the transmission remote instance, default to http://localhost:9091/transmission/rpc

Implementation

const TransmissionScope(
    {Key? key,
    this.baseUrl,
    this.proxyUrl,
    required this.child,
    this.enableLog = false})
    : super(key: key);