lowPrice method

C lowPrice(
  1. double lowPrice
)

Implementation

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

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