copyWith method Null safety
Implementation
VideoRoomEvent copyWith({
String? videoroom,
int? room,
}) {
return VideoRoomEvent.create(
videoroom ?? this.videoroom,
room ?? this.room,
);
}
VideoRoomEvent copyWith({
String? videoroom,
int? room,
}) {
return VideoRoomEvent.create(
videoroom ?? this.videoroom,
room ?? this.room,
);
}