parseAppcastItems method

Future<List<AppcastItem>?> parseAppcastItems(
  1. String contents
)

Parse the Appcast from XML string.

Implementation

Future<List<AppcastItem>?> parseAppcastItems(String contents) async {
  await _getDeviceInfo();
  return parseItemsFromXMLString(contents);
}