MessageFileTypePrivate constructor

const MessageFileTypePrivate({
  1. required String name,
  2. dynamic extra,
  3. int? clientId,
})

The messages was exported from a private chat

Implementation

const MessageFileTypePrivate({
  required this.name,
  this.extra,
  this.clientId,
});