copyWith method

VerificationStatus copyWith({
  1. bool? isVerified,
  2. bool? isScam,
  3. bool? isFake,
  4. int? botVerificationIconCustomEmojiId,
})

Implementation

VerificationStatus copyWith({
  bool? isVerified,
  bool? isScam,
  bool? isFake,
  int? botVerificationIconCustomEmojiId,
}) => VerificationStatus(
  isVerified: isVerified ?? this.isVerified,
  isScam: isScam ?? this.isScam,
  isFake: isFake ?? this.isFake,
  botVerificationIconCustomEmojiId:
      botVerificationIconCustomEmojiId ??
      this.botVerificationIconCustomEmojiId,
);