mode property

String? mode
getter/setter pair

Specifies whether the argument is input or output. Possible string values are:

  • "MODE_UNSPECIFIED" : Unspecified mode.
  • "IN" : The argument is input-only.
  • "OUT" : The argument is output-only.
  • "INOUT" : The argument is both an input and an output.

Implementation

core.String? mode;