Customer constructor
Customer({})
Returns a new Customer instance.
Implementation
Customer({
required this.id,
required this.name,
this.plan,
required this.slug,
this.image,
this.imageThumb = '',
this.imagePreview = '',
this.website,
this.description,
this.contactAddress,
this.billingAddress,
this.paymentMethod,
this.modelsCount = 0,
});