ParamValue constructor

ParamValue({
  1. required float paramValue,
  2. required uint16_t paramCount,
  3. required uint16_t paramIndex,
  4. required List<char> paramId,
  5. required MavParamType paramType,
})

Implementation

ParamValue({
  required this.paramValue,
  required this.paramCount,
  required this.paramIndex,
  required this.paramId,
  required this.paramType,
});