copyWith method
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,
);