highPrice method

C highPrice(
  1. double highPrice
)

Implementation

C highPrice(double highPrice) {
  final sanitizedValue = sanitizeDouble(highPrice);

  return patchState(MatexBaseCoreState(highPrice: sanitizedValue));
}