copyWith method

GroupCallStream copyWith({
  1. int? channelId,
  2. int? scale,
  3. int? timeOffset,
})

Implementation

GroupCallStream copyWith({
  int? channelId,
  int? scale,
  int? timeOffset,
}) =>
    GroupCallStream(
      channelId: channelId ?? this.channelId,
      scale: scale ?? this.scale,
      timeOffset: timeOffset ?? this.timeOffset,
    );