LaunchCustomerModel constructor

LaunchCustomerModel({
  1. required String? customerName,
  2. String? customerEmail,
  3. String? customerMobile,
  4. String? customerProfileId,
})

Constructs a LaunchCustomerModel with optional parameters.

Implementation

LaunchCustomerModel({
  required this.customerName,
  this.customerEmail,
  this.customerMobile,
  this.customerProfileId,
});