pdfcraft_core 0.1.0
pdfcraft_core: ^0.1.0 copied to clipboard
Core models, schema definitions, and plugin contracts for the PDFCraft ecosystem.
example/pdfcraft_core_example.dart
import 'package:pdfcraft_core/pdfcraft_core.dart';
void main() {
const template = Template(
version: '1.0',
pages: [],
);
final json = template.toJson();
print('Generated template JSON: $json');
}