copyWith method

CallProtocol copyWith({
  1. bool? udpP2p,
  2. bool? udpReflector,
  3. int? minLayer,
  4. int? maxLayer,
  5. List<String>? libraryVersions,
})

Implementation

CallProtocol copyWith({
  bool? udpP2p,
  bool? udpReflector,
  int? minLayer,
  int? maxLayer,
  List<String>? libraryVersions,
}) => CallProtocol(
  udpP2p: udpP2p ?? this.udpP2p,
  udpReflector: udpReflector ?? this.udpReflector,
  minLayer: minLayer ?? this.minLayer,
  maxLayer: maxLayer ?? this.maxLayer,
  libraryVersions: libraryVersions ?? this.libraryVersions,
);