PointOfSalesCreateRequest constructor

PointOfSalesCreateRequest({
  1. required String name,
  2. String? website,
  3. PointOfSalesType? type,
  4. String? alias,
  5. String? address,
  6. String? mail,
  7. String? phone,
  8. String? signToken,
})

Implementation

PointOfSalesCreateRequest({
  required this.name,
  this.website,
  this.type,
  this.alias,
  this.address,
  this.mail,
  this.phone,
  String? signToken,
})  :
      super(signToken);