uploadImageBytes method

Future<UploadJsonResult> uploadImageBytes(
  1. String? fileName,
  2. List<int>? fileBytes,
  3. String? mimeType
)

Implementation

Future<UploadJsonResult> uploadImageBytes(
    String? fileName, List<int>? fileBytes, String? mimeType) async {
  return await bytedeskMessageHttpApi.uploadImageBytes(
      fileName, fileBytes, mimeType);
}