FlyZoneScope constructor

const FlyZoneScope({
  1. Key? key,
  2. required FlyZoneController controller,
  3. required RenderBox renderBoxGetter(),
  4. 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);