getUriFromAlbum static method
Implementation
static Future<List<String>> getUriFromAlbum(int count,
String fileType) async {
Map args = {"count": count, "type": fileType};
List<Object?> res = await _channel.invokeMethod(
ShareSDKMethods.getUriFromAlbum.name!, args);
List<String> strings = res
.map((e) => e?.toString() ?? '')
.toList();
return strings;
}