ProtoMessageField constructor

ProtoMessageField({
  1. required String type,
  2. required String name,
  3. bool isRepeated = false,
})

Implementation

ProtoMessageField({
  required this.type,
  required this.name,
  this.isRepeated = false,
});