@@ -1093,11 +1093,11 @@ class MockAndroidWebViewWidgetCreationParams extends _i1.Mock
1093
1093
class MockExpensiveAndroidViewController extends _i1.Mock
1094
1094
implements _i7.ExpensiveAndroidViewController {
1095
1095
@override
1096
- int get textureId => (super .noSuchMethod (
1097
- Invocation .getter (#textureId ),
1098
- returnValue: 0 ,
1099
- returnValueForMissingStub: 0 ,
1100
- ) as int );
1096
+ bool get requiresViewComposition => (super .noSuchMethod (
1097
+ Invocation .getter (#requiresViewComposition ),
1098
+ returnValue: false ,
1099
+ returnValueForMissingStub: false ,
1100
+ ) as bool );
1101
1101
@override
1102
1102
int get viewId => (super .noSuchMethod (
1103
1103
Invocation .getter (#viewId),
@@ -1153,11 +1153,18 @@ class MockExpensiveAndroidViewController extends _i1.Mock
1153
1153
returnValueForMissingStub: _i9.Future <void >.value (),
1154
1154
) as _i9.Future <void >);
1155
1155
@override
1156
- _i9.Future <void > create ({_i4.Size ? size}) => (super .noSuchMethod (
1156
+ _i9.Future <void > create ({
1157
+ _i4.Size ? size,
1158
+ _i4.Offset ? position,
1159
+ }) =>
1160
+ (super .noSuchMethod (
1157
1161
Invocation .method (
1158
1162
#create,
1159
1163
[],
1160
- {#size: size},
1164
+ {
1165
+ #size: size,
1166
+ #position: position,
1167
+ },
1161
1168
),
1162
1169
returnValue: _i9.Future <void >.value (),
1163
1170
returnValueForMissingStub: _i9.Future <void >.value (),
@@ -1438,6 +1445,12 @@ class MockPlatformViewsServiceProxy extends _i1.Mock
1438
1445
class MockSurfaceAndroidViewController extends _i1.Mock
1439
1446
implements _i7.SurfaceAndroidViewController {
1440
1447
@override
1448
+ bool get requiresViewComposition => (super .noSuchMethod (
1449
+ Invocation .getter (#requiresViewComposition),
1450
+ returnValue: false ,
1451
+ returnValueForMissingStub: false ,
1452
+ ) as bool );
1453
+ @override
1441
1454
int get viewId => (super .noSuchMethod (
1442
1455
Invocation .getter (#viewId),
1443
1456
returnValue: 0 ,
@@ -1492,11 +1505,18 @@ class MockSurfaceAndroidViewController extends _i1.Mock
1492
1505
returnValueForMissingStub: _i9.Future <void >.value (),
1493
1506
) as _i9.Future <void >);
1494
1507
@override
1495
- _i9.Future <void > create ({_i4.Size ? size}) => (super .noSuchMethod (
1508
+ _i9.Future <void > create ({
1509
+ _i4.Size ? size,
1510
+ _i4.Offset ? position,
1511
+ }) =>
1512
+ (super .noSuchMethod (
1496
1513
Invocation .method (
1497
1514
#create,
1498
1515
[],
1499
- {#size: size},
1516
+ {
1517
+ #size: size,
1518
+ #position: position,
1519
+ },
1500
1520
),
1501
1521
returnValue: _i9.Future <void >.value (),
1502
1522
returnValueForMissingStub: _i9.Future <void >.value (),
0 commit comments