NIMVideoAttachment(- {int? duration,
- int? width,
- int? height,
- String? thumbPath,
- String? thumbUrl,
- String? path,
- required int? size,
- String? md5,
- String? url,
- String? displayName,
- String? extension,
- int? expire,
- NIMNosScene nosScene = NIMNosScenes.defaultIm,
- bool forceUpload = false}
)
Implementation
NIMVideoAttachment(
{this.duration,
this.width,
this.height,
this.thumbPath,
this.thumbUrl,
String? path,
required int? size,
String? md5,
String? url,
String? displayName,
String? extension,
int? expire,
NIMNosScene nosScene = NIMNosScenes.defaultIm,
bool forceUpload = false})
: super(
path: path,
size: size,
md5: md5,
url: url,
displayName: displayName,
extension: extension,
expire: expire,
nosScene: nosScene,
forceUpload: forceUpload);