withOwner method

BillingInfoBuilder withOwner(
  1. Owner? owner
)

Implementation

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