ProtoField constructor

const ProtoField({
  1. String? name,
  2. int? number,
  3. int? hasValueNumber,
})

Implementation

const ProtoField({
  this.name,
  this.number,
  this.hasValueNumber,
});