pdfcraft_core 1.1.0
pdfcraft_core: ^1.1.0 copied to clipboard
Core models, schema definitions, and plugin contracts for the PDFCraft ecosystem.
pdfcraft_core #
Core models, schemas, and plugin contracts for the PDFCraft ecosystem.
Features #
- Schema Engine: Fully serializable templates using
freezed. - Plugin Contract:
PdfCraftPluginabstract interface. - Plugin Registry: Map strings to plugin builders.
Getting started #
dependencies:
pdfcraft_core: ^0.1.0
Usage #
import 'package:pdfcraft_core/pdfcraft_core.dart';
void main() {
const template = Template(
version: '1.0',
pages: [],
);
final json = template.toJson();
print(json);
}