Generate json_serializable
and hive_generator
classes for use with PocketBase client and app caching.
Create an instance of the client:
final client = PocketBaseGenerator(
'POCKETBASE_URL',
authenticate: (client) => client.admins.authViaEmail(
'ADMIN_USERNAME',
'ADMIN_PASSWORD',
),
);
Then call the generate function to create files at the specified output directory:
await client.generate(hive: true);
Clone the repo locally and run the following command:
dart bin/pocketbase_dart_generator.dart -u ADMIN_USERNAME -p ADMIN_PASSWORD -l POCKETBASE_URL
- Not all types supported
- Enums not generated for options
- Deletes not yet supported (Hive Client)