withOwner method
Implementation
BillingInfoBuilder withOwner(Owner? owner) {
if (owner != null) {
_ownerId = owner.id;
}
_owner = owner;
return this;
}
BillingInfoBuilder withOwner(Owner? owner) {
if (owner != null) {
_ownerId = owner.id;
}
_owner = owner;
return this;
}