debugDump method

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

Dumps the python object to the console.

Implementation

@override
Map<String, Object?> debugDump({
  InspectionCache? cache,
  bool expandChildren = true,
}) =>
    <String, Object?>{
      ...super.debugDump(cache: cache, expandChildren: expandChildren),
      "signature": signature.debugDump(cache: cache),
    };