static MbxImage decode(Object result) { result as List<Object?>; return MbxImage( width: result[0]! as int, height: result[1]! as int, data: result[2]! as Uint8List, ); }