type_graph 1.1.0 type_graph: ^1.1.0 copied to clipboard
Build graphs of your type hierarchies in your Dart/Flutter apps.
import 'dart:io';
import 'package:type_graph/type_graph.dart';
void main() async {
final paths = [
'/path/to/dart/file.dart',
'/path/to/other/dart/file.dart',
];
final graphBuilder = TypeGraphBuilder(paths);
await graphBuilder.writeGraphToFile(File('output.gz'));
}