getCardArtUrls method
Get the card art URLs.
Implementation
@override
Future<List<String>> getCardArtUrls() async {
try {
final List<dynamic> result = await methodChannel.invokeMethod(
'getCardArtUrls',
);
final List<String> cardArtUrls =
result.map((url) => url as String).toList();
return cardArtUrls;
} on PlatformException {
rethrow;
}
}