copyWith method

  1. @override
PushMessageContentChatChangeTitle copyWith({
  1. String? title,
})
override

Copy model with modified properties.

Properties:

  • title: New chat title

Implementation

@override
PushMessageContentChatChangeTitle copyWith({
  String? title,
}) =>
    PushMessageContentChatChangeTitle(
      title: title ?? this.title,
    );