getOwnerId method

  1. @override
EntityId? getOwnerId()

Implementation

@override
EntityId? getOwnerId() {
  return customerId != null && !customerId!.isNullUid()
      ? customerId
      : tenantId;
}