EMGroupSharedFile.fromJson constructor

EMGroupSharedFile.fromJson(
  1. Map? map
)

Implementation

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