PView constructor

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

Implementation

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