copyWith method

  1. @override
MessageChatUpgradeFrom copyWith({
  1. String? title,
  2. int? basicGroupId,
})
override

Implementation

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