PView constructor

const PView({
  1. Key? key,
  2. required Widget child,
  3. required String valueKey,
  4. bool isWidget = false,
  5. void onVisibilityChanged(
    1. double visibleFraction
    )?,
})

Implementation

const PView({Key? key, required this.child, required this.valueKey, this.isWidget = false, this.onVisibilityChanged}) : super(key: key);