toJson method

  1. @override
Map<String, dynamic> toJson()
override

Returns a serialized JSON structure of the model, ready to be sent through the API. This does not include fields that are marked as database only.

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    'name': name,
    if (dartName != null) 'dartName': dartName,
    if (module != null) 'module': module,
    'schema': schema,
    'addColumns': addColumns.toJson(valueToJson: (v) => v.toJson()),
    'deleteColumns': deleteColumns.toJson(),
    'modifyColumns': modifyColumns.toJson(valueToJson: (v) => v.toJson()),
    'addIndexes': addIndexes.toJson(valueToJson: (v) => v.toJson()),
    'deleteIndexes': deleteIndexes.toJson(),
    'addForeignKeys': addForeignKeys.toJson(valueToJson: (v) => v.toJson()),
    'deleteForeignKeys': deleteForeignKeys.toJson(),
    'warnings': warnings.toJson(valueToJson: (v) => v.toJson()),
  };
}