isLeaf property

  1. @TagNumber.new(17)
bool get isLeaf

@mandatory

@description Indicates whether this code is a terminal "leaf" node. If true, no further sub-codes can be nested under this entry.

@example true

Implementation

@$pb.TagNumber(17)
$core.bool get isLeaf => $_getBF(7);
  1. @TagNumber.new(17)
set isLeaf (bool value)

Implementation

@$pb.TagNumber(17)
set isLeaf($core.bool value) => $_setBool(7, value);