decode static method
Implementation
static FCallibriMotionCounterParam decode(Object result) {
result as List<Object?>;
return FCallibriMotionCounterParam(
insenseThresholdMG: result[0]! as int,
insenseThresholdSample: result[1]! as int,
);
}