copyWith method

MessageChatOwnerChanged copyWith({
  1. int? newOwnerUserId,
})

Implementation

MessageChatOwnerChanged copyWith({int? newOwnerUserId}) =>
    MessageChatOwnerChanged(
      newOwnerUserId: newOwnerUserId ?? this.newOwnerUserId,
    );