getValue method

String getValue()

Exact value of the parameter, if no program.

Implementation

String getValue () {
  if (mutable) {
    return _nativeMutable!.value;
  } else {
    return _native!.value;
  }
}