convert method

  1. @override
TrackerListIter convert(
  1. String input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
TrackerListIter convert(String input) => input
    .split('\n')
    .where((e) => e.isNotEmpty)
    .map((tracker) => tracker.split('\n\n'));