CfiParameter constructor

CfiParameter({
  1. required String type,
  2. required String? lHSValue,
  3. required String? rHSValue,
})

Implementation

CfiParameter({
  required this.type,
  required this.lHSValue,
  required this.rHSValue,
});