parse static method

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

Parse a document represented by the source

source a string value of the full document.

Implementation

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