Describe the bug
repeated MyMessage my_messages = 1;
This generates a field with type List<MyMessage?>, however it should be List<MyMessage>.
To Reproduce
Code to reproduce the problem
message InvalidMessage {
repeated InvalidMessage invalidMessage = 1;
}
Expected behavior
List<MyMessage>
Describe the bug
repeated MyMessage my_messages = 1;This generates a field with type
List<MyMessage?>, however it should beList<MyMessage>.To Reproduce
Code to reproduce the problem
Expected behavior
List<MyMessage>