copyWith method

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

Implementation

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