box_generator

Creator: coderz1093

Last updated:

0 purchases

box_generator Image
box_generator Images

Languages

Categories

Add to Cart

Description:

box generator

Dart Box Generator #
Generates Box bindings for @entity annotated classes.
Setup #
Add dev dependencies build_runner and box_generator to pubspec.yaml:
dev_dependencies:
build_runner: <version>
box_generator: <version>
copied to clipboard
Usage #
Annotate the class you want to generate Box bindings for and add the generated file as a part.
Add a constructor with named parameters.
import 'package:box/box.dart';

part 'employee.g.dart';

@entity
class Employee {
@key
final String id;
final String name;

Employee({this.id, this.name});
}
copied to clipboard
You can customize serialization by adding a fromJson constructor and a toJson method.
Employee.fromJson(Map<String, dynamic> json) : this(
id: json['id'],
name: json['name'],
);

Map<String, dynamic> toJson() => {
'id': id,
'name': name,
};

copied to clipboard
Whenever you make a change to an annotated class, execute:
pub run build_runner build
copied to clipboard
Now you can any Box implementation as follows:
var registry = Registry()..register(Employee$BoxSupport()));
var box = MemoryBox(registry);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.