MorphFlightScope constructor

const MorphFlightScope({
  1. Key? key,
  2. required MorphFlight flight,
  3. required Widget child,
})

Publishes flight to the content subtree.

Implementation

const MorphFlightScope({
  super.key,
  required this.flight,
  required super.child,
});