FlyZoneScope constructor
const
FlyZoneScope({
- Key? key,
- required FlyZoneController controller,
- required RenderBox renderBoxGetter(),
- required Widget child,
Implementation
const FlyZoneScope({
Key? key,
required this.controller,
required RenderBox Function() renderBoxGetter,
required Widget child,
}) : _renderBoxGetter = renderBoxGetter,
super(key: key, child: child);