debugDump method

Map<String, Object?> debugDump({
  1. InspectionCache? cache,
  2. bool expandChildren = true,
})

Emits a JSON representation of this connection.

Implementation

Map<String, Object?> debugDump({
  InspectionCache? cache,
  bool expandChildren = true,
}) =>
    <String, Object?>{
      "name": name,
      "sanitizedName": sanitizedName,
      "parentModule":
          parentModule.debugDump(cache: cache, expandChildren: false),
    };