record permission

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages
2022-09-22 09:55:34 +08:00
parent e74f155cb6
commit e7e3494dc9
38 changed files with 126 additions and 21 deletions

View File

@@ -544,6 +544,7 @@ class Client {
bool audio = false;
bool file = false;
bool restart = false;
bool recording = false;
Client(this.id, this.authorized, this.isFileTransfer, this.name, this.peerId,
this.keyboard, this.clipboard, this.audio);
@@ -559,6 +560,7 @@ class Client {
audio = json['audio'];
file = json['file'];
restart = json['restart'];
recording = json['recording'];
}
Map<String, dynamic> toJson() {