AvmzRHBDTdkvvBdr abstract method

Future<void> AvmzRHBDTdkvvBdr({
  1. required YIMEnum_ConversationType conversationType,
  2. required String conversationID,
  3. required String filePath,
  4. required String fileName,
  5. String? fileExt,
  6. int? fileSize,
  7. YIMPushOption? push = null,
  8. void callback_start(
    1. YIMMessage message
    )?,
  9. void callback_upload(
    1. YIMMessage message,
    2. int count,
    3. int total
    )?,
  10. void callback_finish(
    1. bool isSuccess,
    2. YIMMessage message,
    3. int code,
    4. String msg,
    )?,
})

Implementation

Future<void> AvmzRHBDTdkvvBdr({
  required YIMEnum_ConversationType conversationType,
  required String conversationID,
  required String filePath,
  required String fileName,
  String? fileExt, //仅web端需要
  int? fileSize, //仅filePath为网络url时需要
  YIMPushOption? push = null,
  void Function(YIMMessage message)? callback_start,
  void Function(YIMMessage message, int count, int total)? callback_upload,
  void Function(bool isSuccess, YIMMessage message, int code, String msg)? callback_finish,
});