copyWith method

VerifyAccountResponseMessage copyWith({
  1. String? id,
  2. String? accountId,
  3. AccountModel? data,
  4. 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,
  );
}