setCurrencyCode method

void setCurrencyCode(
  1. String currencyCode
)

Setting user local currency code for in-app purchases. The currency code should be a 3 character ISO 4217 code. (default is USD). You can set the currency code for all events by calling the following method.

Implementation

void setCurrencyCode(String currencyCode) {
  _methodChannel
      .invokeMethod("setCurrencyCode", {'currencyCode': currencyCode});
}