ParamEditorCell constructor

const ParamEditorCell({
  1. Key? key,
  2. required String id,
  3. required ParamWrapper param,
})

Implementation

const ParamEditorCell({
  super.key,
  required this.id,
  required this.param,
});