parse method

Future<PubBox?> parse(
  1. String fileAtPath
)

Parse a file and return a PubBox instance if the format is supported by the parser.

Implementation

Future<PubBox?> parse(String fileAtPath) =>
    parseWithFallbackTitle(fileAtPath, basename(fileAtPath));