Customer constructor

Customer({
  1. required _CustomerObject object,
  2. required String id,
  3. String? description,
  4. String? email,
  5. Map<String, dynamic>? metadata,
  6. String? name,
})

Implementation

Customer({
  required this.object,
  required this.id,
  this.description,
  this.email,
  this.metadata,
  this.name,
});