copyWith method
VerifyAccountResponseMessage
copyWith({
- String? id,
- String? accountId,
- AccountModel? data,
- DateTime? createdAt,
Implementation
VerifyAccountResponseMessage copyWith({
String? id,
String? accountId,
AccountModel? data,
DateTime? createdAt,
}) {
return VerifyAccountResponseMessage(
id: id ?? this.id,
accountId: accountId ?? this.accountId,
data: data ?? this.data,
createdAt: createdAt ?? this.createdAt,
);
}