encoding property

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

Optional. The character encoding of the data. The default is UTF-8.

Implementation

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

Implementation

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