copyWith method
Implementation
SubscriptionLog copyWith({
String? id,
String? description,
String? notes,
String? createdat,
}) {
return SubscriptionLog(
id: id ?? this.id,
description: description ?? this.description,
notes: notes ?? this.notes,
createdAt: createdat ?? this.createdAt,
);
}