EMImageMessageBody constructor

EMImageMessageBody({
  1. String? localPath,
  2. String? displayName,
  3. String? thumbnailLocalPath,
  4. bool? sendOriginalImage,
  5. double? width,
  6. double? height,
})

Implementation

EMImageMessageBody({
  String? localPath,
  String? displayName,
  this.thumbnailLocalPath,
  this.sendOriginalImage,
  this.width,
  this.height,
}) : super(
        localPath: localPath,
        displayName: displayName,
        type: EMMessageBodyType.IMAGE,
      );