parseFile function

Future<List<M3uGenericEntry>> parseFile(
  1. String source
)

Parse a document represented by the source

source a string value of the full document.

Implementation

Future<List<M3uGenericEntry>> parseFile(String source) async =>
    M3uParser.parse(source);