toJson method

Map<String, Object?> toJson()

JSON-like representation for debug surfaces.

Implementation

Map<String, Object?> toJson() {
  return <String, Object?>{
    'moduleId': moduleId,
    'deployment': deployment.name,
    'entrypointSymbol': entrypointSymbol,
    'processorOperations': processorOperations,
  };
}