copyWith method

ViewerSessionIdentity copyWith({
  1. String? playbackUrl,
})

Implementation

ViewerSessionIdentity copyWith({String? playbackUrl}) =>
    ViewerSessionIdentity(
      viewerId: viewerId,
      roomName: roomName,
      playbackUrl: playbackUrl ?? this.playbackUrl,
      protocol: protocol,
      token: token,
      metadata: metadata,
    );