copyWith method

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

Implementation

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