result property

  1. @TagNumber.new(1)
String get result

For simplicity, the result is returned as a JSON-encoded string. In a real-world scenario you might define a more structured response.

Implementation

@$pb.TagNumber(1)
$core.String get result => $_getSZ(0);
  1. @TagNumber.new(1)
set result (String value)

Implementation

@$pb.TagNumber(1)
set result($core.String value) => $_setString(0, value);