Offer constructor
Offer({
- OfferPayload? offerPayload,
Implementation
factory Offer({
OfferPayload? offerPayload,
}) {
final $result = create();
if (offerPayload != null) {
$result.offerPayload = offerPayload;
}
return $result;
}