d4t_formulas/.pub-cache/hosted/pub.dev/stream_channel-2.1.4
Álvaro González 1d339653d5 feat: add formula data classes with strict JSON parsing
- Add VariableSpec class with magnitude field validation
- Add Formula class supporting multiple input/output variables
- Support d4rt_code as string or object with code field
- Add comprehensive tests for parsing and serialization
- Fix broken test import in pruebas_d4rt_test.dart

Follows README.md format requirements exactly
2025-08-21 17:15:00 +02:00
..
example feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
lib feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
test feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
analysis_options.yaml feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
AUTHORS feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
CHANGELOG.md feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
LICENSE feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
pubspec.yaml feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00
README.md feat: add formula data classes with strict JSON parsing 2025-08-21 17:15:00 +02:00

Build Status pub package package publisher

This package exposes the StreamChannel interface, which represents a two-way communication channel. Each StreamChannel exposes a Stream for receiving data and a StreamSink for sending it.

StreamChannel helps abstract communication logic away from the underlying protocol. For example, the test package re-uses its test suite communication protocol for both WebSocket connections to browser suites and Isolate connections to VM tests.

This package also contains utilities for dealing with StreamChannels and with two-way communications in general. For documentation of these utilities, see the API docs.