copyWith method

StoryContentLive copyWith({
  1. int? groupCallId,
  2. bool? isRtmpStream,
})

Implementation

StoryContentLive copyWith({int? groupCallId, bool? isRtmpStream}) =>
    StoryContentLive(
      groupCallId: groupCallId ?? this.groupCallId,
      isRtmpStream: isRtmpStream ?? this.isRtmpStream,
    );