TapToPayConnectionConfiguration constructor

const TapToPayConnectionConfiguration({
  1. required String locationId,
  2. bool autoReconnectOnUnexpectedDisconnect = true,
  3. String? onBehalfOf,
  4. String? merchantDisplayName,
  5. bool tosAcceptancePermitted = true,
  6. bool returnReadResultImmediatelyEnabled = true,
  7. required TapToPayReaderDelegate? readerDelegate,
})

Implementation

const TapToPayConnectionConfiguration({
  required this.locationId,
  this.autoReconnectOnUnexpectedDisconnect = true,
  this.onBehalfOf,
  this.merchantDisplayName,
  this.tosAcceptancePermitted = true,
  this.returnReadResultImmediatelyEnabled = true,
  required this.readerDelegate,
});