ChatGroupSharedFile.fromJson constructor

ChatGroupSharedFile.fromJson(
  1. Map? map
)

Implementation

factory ChatGroupSharedFile.fromJson(Map? map) {
  return ChatGroupSharedFile._private()
    .._fileId = map?["fileId"]
    .._fileName = map?["name"]
    .._fileOwner = map?["owner"]
    .._createTime = map?["createTime"]
    .._fileSize = map?["fileSize"];
}