setCountryCode static method

void setCountryCode(
  1. String code
)

It would be great if I could add country code into AppStore lookup URL. Eg: AppReview.setCountryCode('jp');

Implementation

static void setCountryCode(String code) =>
    _appCountry = code.isEmpty ? null : code;