load static method

Future<DXF> load(
  1. String filePath
)

Loading your DXF file

Implementation

static Future<DXF> load(String filePath) async {
  var _dxf = DXF._init(filePath);
  await _dxf._load(filePath);
  await _dxf._parse();
  return _dxf;
}