convert method
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'));
Converts input
and returns the result of the conversion.
@override
TrackerListIter convert(String input) => input
.split('\n')
.where((e) => e.isNotEmpty)
.map((tracker) => tracker.split('\n\n'));