pPS method

void pPS(
  1. int tagNumber,
  2. String name, {
  3. String? protoName,
})

Adds PbFieldType.PS String with no default value.

Implementation

void pPS(int tagNumber, String name, {String? protoName}) {
  addRepeated<String>(
    tagNumber,
    name,
    PbFieldType.PS,
    getCheckFunction(PbFieldType.PS),
    null,
    null,
    null,
    protoName: protoName,
  );
}