(WriteContext context, in List<T> value, bool hasGenerics)
| 531 | public override List<T> DefaultValue => null!; |
| 532 | |
| 533 | public override void WriteData(WriteContext context, in List<T> value, bool hasGenerics) |
| 534 | { |
| 535 | List<T> safe = value ?? []; |
| 536 | CollectionCodec.WriteCollectionData(safe, context.TypeResolver.GetSerializer<T>(), context, hasGenerics); |
| 537 | } |
| 538 | |
| 539 | public override List<T> ReadData(ReadContext context) |
| 540 | { |
nothing calls this directly
no test coverage detected