toJson method
Returns a serialized JSON structure of the model which also includes fields used by the database.
Implementation
@override
Map<String, dynamic> toJson() {
return {
'target': target.toJson(valueToJson: (v) => v.toJson()),
'live': live.toJson(valueToJson: (v) => v.toJson()),
'installedMigrations':
installedMigrations.toJson(valueToJson: (v) => v.toJson()),
'latestAvailableMigrations':
latestAvailableMigrations.toJson(valueToJson: (v) => v.toJson()),
};
}