isHidden property

  1. @TagNumber.new(31)
bool get isHidden

Denotes if the field is hidden (field shall not be visible on the UI). The field shall be visible only through the API

Implementation

@$pb.TagNumber(31)
$core.bool get isHidden => $_getBF(10);
  1. @TagNumber.new(31)
set isHidden (bool value)

Implementation

@$pb.TagNumber(31)
set isHidden($core.bool value) => $_setBool(10, value);