toDebugMap method

Map<String, Object?> toDebugMap()

Debug map.

Implementation

Map<String, Object?> toDebugMap() {
  var map = <String, Object?>{
    'path': path,
    'id': id,
    'readOnly': readOnly,
    'singleInstance': singleInstance
  };
  return map;
}