toJsonForProtocol method

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

Returns a JSON structure of the model, optimized for Protocol communication.

Implementation

@override
Map<String, dynamic> toJsonForProtocol() {
  return {
    'target': target.toJson(valueToJson: (v) => v.toJsonForProtocol()),
    'live': live.toJson(valueToJson: (v) => v.toJsonForProtocol()),
    'installedMigrations':
        installedMigrations.toJson(valueToJson: (v) => v.toJsonForProtocol()),
    'latestAvailableMigrations': latestAvailableMigrations.toJson(
        valueToJson: (v) => v.toJsonForProtocol()),
  };
}