CustomerAcceptance constructor
      const
      CustomerAcceptance({ 
    
- DateTime? acceptedAt,
 - OfflineAcceptance? offline,
 - OnlineAcceptance? online,
 - required CustomerAcceptanceType type,
 
customer_acceptance
Implementation
const CustomerAcceptance({
  this.acceptedAt,
  this.offline,
  this.online,
  required this.type,
});