findAlbums method

  1. @override
Future<List<String>> findAlbums(
  1. LocalAlbumType localAlbumType
)
override

Implementation

@override
Future<List<String>> findAlbums(LocalAlbumType localAlbumType) async {
  return _toStringList(await (_channel.invokeMethod<List<dynamic>>(
      'albums', localAlbumType.value)));
}