FlutterEdge constructor

FlutterEdge({
  1. int? wayId,
  2. required int toNode,
  3. required int toFloorIndex,
  4. required double weight,
  5. String? name,
})

Implementation

FlutterEdge({
  this.wayId,
  required this.toNode,
  required this.toFloorIndex,
  required this.weight,
  this.name,
});