NEFileAttachment constructor

NEFileAttachment({
  1. int? size,
  2. String? md5,
  3. required String url,
  4. required String displayName,
  5. String? extension,
  6. int? expire,
})

Implementation

NEFileAttachment({
  this.size,
  this.md5,
  required this.url,
  required this.displayName,
  this.extension,
  this.expire,
});