buildFieldPath static method
Implementation
static List<int> buildFieldPath(List<int> parentPath, ProtobufField field) {
return List.from(parentPath)
..addAll([_messageFieldTag, field.sourcePosition!]);
}
static List<int> buildFieldPath(List<int> parentPath, ProtobufField field) {
return List.from(parentPath)
..addAll([_messageFieldTag, field.sourcePosition!]);
}