CustomerAcceptance constructor

const CustomerAcceptance({
  1. DateTime? acceptedAt,
  2. OfflineAcceptance? offline,
  3. OnlineAcceptance? online,
  4. required CustomerAcceptanceType type,
})

customer_acceptance

Implementation

const CustomerAcceptance({
  this.acceptedAt,
  this.offline,
  this.online,
  required this.type,
});