PapercupsCustomer constructor

PapercupsCustomer({
  1. DateTime? createdAt,
  2. String? email,
  3. String? externalId,
  4. DateTime? firstSeen,
  5. String? id,
  6. DateTime? lastSeenAt,
  7. DateTime? updatedAt,
  8. String? name,
  9. String? phone,
})

Implementation

PapercupsCustomer({
  this.createdAt,
  this.email,
  this.externalId,
  this.firstSeen,
  this.id,
  this.lastSeenAt,
  this.updatedAt,
  this.name,
  this.phone,
});