EMVideoMessageBody constructor Null safety
- {String? localPath,
- String? displayName,
- int? duration,
- String? thumbnailLocalPath,
- double? height,
- double? width}
Implementation
EMVideoMessageBody({
String? localPath,
String? displayName,
this.duration,
this.thumbnailLocalPath,
this.height,
this.width,
}) : super(
localPath: localPath,
displayName: displayName,
type: EMMessageBodyType.VIDEO,
);