CustomerOptions constructor

const CustomerOptions({
  1. required String customerKey,
  2. CheckType checkType = CheckType.hold,
  3. String? email,
  4. Map<String, String>? data,
})

Implementation

const CustomerOptions({
  required this.customerKey,
  this.checkType = CheckType.hold,
  this.email,
  this.data,
});