PView constructor

const PView({
  1. Key? key,
  2. required Widget child,
  3. required String valueKey,
})

Implementation

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