owner method
Implementation
DocumentUpdate<D> owner(List<int> owner) {
final tag = _document.getTagNumber('Owner');
if (tag == null) {
throw ArgumentError('Document does not have tag "Owner"');
}
_document.setField(tag, owner);
_mask.paths.add('owner');
return this;
}