copyWith method

  1. @override
MessageVideoChatEnded copyWith({
  1. int? duration,
})
override

Implementation

@override
MessageVideoChatEnded copyWith({
  int? duration,
}) => MessageVideoChatEnded(
  duration: duration ?? this.duration,
);