text property

  1. @TagNumber(2)
String text

Shell script text.

To specify an interpreter, please add a #!<interpreter>\n at the beginning of the text.(For example, to execute the script using bash, #!/bin/bash\n should be added. To execute the script usingPython3, #!/usr/bin/env python3\n should be added.) Otherwise, the script will by default be excuted by /bin/sh.

Implementation

@$pb.TagNumber(2)
$core.String get text => $_getSZ(1);
  1. @TagNumber(2)
void text=(String v)

Implementation

@$pb.TagNumber(2)
set text($core.String v) { $_setString(1, v); }