CustomerSessionCreateOptions constructor

const CustomerSessionCreateOptions({
  1. required CustomerSessionComponents components,
  2. required String customer,
  3. List<String>? expand,
})

Implementation

const CustomerSessionCreateOptions({
  required this.components,
  required this.customer,
  this.expand,
});