customPrice method

C customPrice(
  1. double customPrice
)

Implementation

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

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