TransmissionScreen constructor

const TransmissionScreen({
  1. Key? key,
  2. String title = 'Transmission',
  3. Color iconActiveColor = Colors.blueAccent,
  4. bool enableRealTimeButton = true,
  5. bool enableAddTorrentButton = true,
  6. bool enableTopBarButtons = true,
  7. bool enableStatusBar = true,
  8. bool headless = false,
  9. List<Widget> actions = const [],
})

Implementation

const TransmissionScreen({
  Key? key,
  this.title = 'Transmission',
  this.iconActiveColor = Colors.blueAccent,
  this.enableRealTimeButton = true,
  this.enableAddTorrentButton = true,
  this.enableTopBarButtons = true,
  this.enableStatusBar = true,
  this.headless = false,
  this.actions = const [],
}) : super(key: key);