SubscriptionLog constructor

SubscriptionLog({
  1. String? id,
  2. String? description,
  3. String? notes,
  4. String? createdAt,
})

Implementation

SubscriptionLog({
  this.id,
  this.description,
  this.notes,
  this.createdAt,
});