fix for null safety

This commit is contained in:
rustdesk
2022-03-27 23:08:43 +08:00
parent 4d64fee76d
commit 035934cd99
3 changed files with 2 additions and 23 deletions

View File

@@ -15,7 +15,7 @@ bool mouseIn = false;
class PlatformFFI {
static void clearRgbaFrame() {}
static Uint8List getRgba() {
static Uint8List? getRgba() {
return js.context.callMethod('getRgba');
}