FlutterFlipListener constructor

const FlutterFlipListener({
  1. required Widget child,
  2. OnDeviceFullyOpenedListener? onDeviceFullyOpened,
  3. OnDeviceSemiOpenedListener? onDeviceSemiOpened,
  4. OnDeviceClosedListener? onDeviceClosed,
  5. Key? key,
})

Implementation

const FlutterFlipListener({
  required this.child,
  this.onDeviceFullyOpened,
  this.onDeviceSemiOpened,
  this.onDeviceClosed,
  Key? key,
}) : super(
        key: key,
      );