get method

Future<String?> get(
  1. String url
)

Images can be obtained using their URL.

  • obtain an image using the url returned by the APIs
client.images.get(imageURL);

Implementation

Future<String?> get(String url) {
  final token =
      userToken ?? TokenHelper.buildFilesToken(secret!, TokenAction.read);
  return _images.get(token, url);
}