copyWith method

  1. @override
CallServerTypeTelegramReflector copyWith({
  1. String? peerTag,
  2. bool? isTcp,
})
override

Implementation

@override
CallServerTypeTelegramReflector copyWith({
  String? peerTag,
  bool? isTcp,
}) =>
    CallServerTypeTelegramReflector(
      peerTag: peerTag ?? this.peerTag,
      isTcp: isTcp ?? this.isTcp,
    );