DcOption constructor

const DcOption({
  1. required bool ipv6,
  2. required bool mediaOnly,
  3. required bool tcpoOnly,
  4. required bool cdn,
  5. required bool static,
  6. required bool thisPortOnly,
  7. required int id,
  8. required String ipAddress,
  9. required int port,
  10. Uint8List? secret,
})

Dc Option constructor.

Implementation

const DcOption({
  required this.ipv6,
  required this.mediaOnly,
  required this.tcpoOnly,
  required this.cdn,
  required this.static,
  required this.thisPortOnly,
  required this.id,
  required this.ipAddress,
  required this.port,
  this.secret,
}) : super._();