copyWith method

GroupCallVideoSourceGroup copyWith({
  1. String? semantics,
  2. List<int>? sourceIds,
})

Implementation

GroupCallVideoSourceGroup copyWith({
  String? semantics,
  List<int>? sourceIds,
}) =>
    GroupCallVideoSourceGroup(
      semantics: semantics ?? this.semantics,
      sourceIds: sourceIds ?? this.sourceIds,
    );