add noSuchMethod to _MulticastCanvas to unblock smoke testing against forthcoming new getTransform/Clip methods (#103737)
This commit is contained in:
parent
03be77dbf0
commit
697e930d5e
@ -285,6 +285,11 @@ class _MulticastCanvas implements Canvas {
|
||||
_main.translate(dx, dy);
|
||||
_screenshot.translate(dx, dy);
|
||||
}
|
||||
|
||||
@override
|
||||
dynamic noSuchMethod(Invocation invocation) {
|
||||
super.noSuchMethod(invocation);
|
||||
}
|
||||
}
|
||||
|
||||
Rect _calculateSubtreeBoundsHelper(RenderObject object, Matrix4 transform) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user