d4t_formulas/.pub-cache/hosted/pub.dev/file-7.0.1
Á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
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

package:file pub package package publisher

A generic file system abstraction for Dart.

Features

Like dart:io, package:file supplies a rich Dart-idiomatic API for accessing a file system.

Unlike dart:io, package:file:

  • Can be used to implement custom file systems.
  • Comes with an in-memory implementation out-of-the-box, making it super-easy to test code that works with the file system.
  • Allows using multiple file systems simultaneously. A file system is a first-class object. Instantiate however many you want and use them all.

Usage

Implement your own custom file system:

import 'package:file/file.dart';

class FooBarFileSystem implements FileSystem { ... }

Use the in-memory file system:

import 'package:file/memory.dart';

var fs = MemoryFileSystem();

Use the local file system (requires dart:io access):

import 'package:file/local.dart';

var fs = const LocalFileSystem();