parse static method

Future<Model> parse(
  1. String filePath
)

Implementation

static Future<Model> parse(String filePath) async {
  final parser = _getParser(filePath);
  return parser.parseModel(filePath);
}