GraphNode constructor
GraphNode(
- String id
Implementation
GraphNode(this.id) {
if (id.isEmpty) {
throw FlutterError('id不能为空');
}
}
GraphNode(this.id) {
if (id.isEmpty) {
throw FlutterError('id不能为空');
}
}