xBlob_SetImage method

Future<bool> xBlob_SetImage(
  1. Uint8List payload,
  2. String blobFullName
)

Implementation

Future<bool> xBlob_SetImage(Uint8List payload, String blobFullName) async {
  await azureStorage.putBlob(blobFullName, bodyBytes: payload, contentType: 'image/png').whenComplete(() {});
  return true;
}