Im my SDK sample app in native android, an image is loaded using Glide library as follows.
private void updateProfilePhoto(BadgeUIEntity badgeUIEntity) {
String profilePhotoChecksum = badgeUIEntity.profilePhotoChecksum();
String profilePhotoUrl = badgeUIEntity.profilePhotoUrl();
if (profilePhotoChecksum != null && !TextUtils.isEmpty(profilePhotoUrl)) {
try {
RequestOptions requestOptions = RequestOptions.signatureOf(new ObjectKey(profilePhotoChecksum));
Glide.with(this)
.applyDefaultRequestOptions(requestOptions)
.load(profilePhotoUrl).into(ivProfilePhoto);
} catch (Exception e) {
Timber.v(e);
}
}}
How can I render the same image in flutter? I have no idea what to do with this checksum in Flutter.