NiubizConfigModel constructor

NiubizConfigModel({
  1. String? userName,
  2. String? password,
  3. String? merchantId,
  4. bool? isProduction = false,
  5. String? titleBrand,
  6. String? name,
  7. String? lastName,
  8. String? email,
})

Creates a new instance of NiubizConfigModel.

All parameters are optional. If not provided, isProduction defaults to false.

Implementation

NiubizConfigModel({
  this.userName,
  this.password,
  this.merchantId,
  this.isProduction = false,
  this.titleBrand,
  this.name,
  this.lastName,
  this.email,
});