openPrice method

C openPrice(
  1. double openPrice
)

Implementation

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

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