toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      'name': name,
      'path': path,
      'estimatedSizeBytes': estimatedSizeBytes,
      'dependencies': dependencies.toList(),
      'usedBy': usedBy.toList(),
      'isExported': isExported,
      'isUsed': isUsed,
    };