isInstanceFunction property

  1. @TagNumber.new(5)
bool get isInstanceFunction

Whether the function is to be used in a method call-style x.f(...) or a function call-style f(x, ...).

For methods, the first parameter declaration, params[0] is the expected type of the target receiver.

Implementation

@$pb.TagNumber(5)
$core.bool get isInstanceFunction => $_getBF(4);
  1. @TagNumber.new(5)
set isInstanceFunction (bool value)

Implementation

@$pb.TagNumber(5)
set isInstanceFunction($core.bool value) => $_setBool(4, value);