copyWith method

  1. @override
CallServerTypeWebrtc copyWith({
  1. String? username,
  2. String? password,
  3. bool? supportsTurn,
  4. bool? supportsStun,
})
override

Implementation

@override
CallServerTypeWebrtc copyWith({
  String? username,
  String? password,
  bool? supportsTurn,
  bool? supportsStun,
}) =>
    CallServerTypeWebrtc(
      username: username ?? this.username,
      password: password ?? this.password,
      supportsTurn: supportsTurn ?? this.supportsTurn,
      supportsStun: supportsStun ?? this.supportsStun,
    );