@override Future<bool> setSize(double width, double height) async { final result = await methodChannel.invokeMethod<bool>('setSize', { 'width': width, 'height': height, }); return result ?? false; }