copyWith method
Implementation
Payee copyWith(
{String? id, String? name, String? transferAccountId, bool? deleted}) {
return Payee(
id: id ?? this.id,
name: name ?? this.name,
transferAccountId: transferAccountId ?? this.transferAccountId,
deleted: deleted ?? this.deleted);
}