-
Notifications
You must be signed in to change notification settings - Fork 0
Classes
Efra Espada edited this page Jan 30, 2024
·
2 revisions
Define Dart classes that you want to serialize or deserialize. Annotate these classes with the necessary annotations from the generated file from the object
package to specify serialization behavior.
sample.dart
inmodel/
folder
import 'generated/model.g.dart';
class Sample extends SampleGen {
@override
@Field(
name: 'id',
primary: true,
)
String id = '';
@override
@Field(name: 'numberContent')
num numberContent = 0;
Sample();
}
Run the object builder to generate serialization code for your annotated Dart classes.
dart run object:build